Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #551

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Similarly, snap also requires that you install the corresponding snap for your t
**Only works with premium accounts!**

- playback control (play/pause, prev/next, seeking, shuffle, repeat (none, all, song))
- selection mode: easily browse and select mutliple tracks to queue them
- selection mode: easily browse and select multiple tracks to queue them
- browse your saved albums and playlists
- search albums and artists
- view an artist's releases
Expand Down
2 changes: 1 addition & 1 deletion build-aux/flatpak-cargo-generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def get_git_sources(package):
name = package['name']
source = package['source']
commit = urlparse(source).fragment
assert commit, 'The commit needs to be indicated in the fragement part'
assert commit, 'The commit needs to be indicated in the fragment part'
canonical = canonical_url(source)
repo_url = canonical.geturl()

Expand Down
4 changes: 2 additions & 2 deletions data/dev.alextren.Spot.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<ul>
<li>playback control (play/pause, prev/next, seeking)</li>
<li>play queue with shuffle option</li>
<li>selection mode: easily browse and select mutliple tracks to queue them</li>
<li>selection mode: easily browse and select multiple tracks to queue them</li>
<li>browse your saved albums and playlists</li>
<li>search albums and artists</li>
<li>view an artist's releases</li>
Expand Down Expand Up @@ -252,7 +252,7 @@
New feature: the main window can now be closed without stopping playback. Use Quit or Ctrl+Q to exit the app.
</p>
<p>
This release fixes numerous issues, including: main window being too large and too tall for phones, startup crash for playlist without images, "About" dialog not closing in qtile, keyboard navigation being broken in the login dialog. Special thanks to Douile for contributing fixes for many of these isssues!
This release fixes numerous issues, including: main window being too large and too tall for phones, startup crash for playlist without images, "About" dialog not closing in qtile, keyboard navigation being broken in the login dialog. Special thanks to Douile for contributing fixes for many of these issues!
</p>
</description>
</release>
Expand Down
2 changes: 1 addition & 1 deletion doc/doc.tex
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ \subsection{A listener: the player subsystem}

Any element that wishes to update the state or react to changes from the state has to follow that same pattern. For instance, the ``player'' part of Spot receives \texttt{Commands} (mapped from events by a \texttt{PlayerNotifier}) to start playing music, and dispatches actions back the app through a \texttt{SpotifyPlayerDelegate} (see figure \ref{fig:player}).

These two extra elements add some indirection so that the player is not too strongly coupled to the rest of the app (it does not and should not care about most events, afterall!). Moreover, those commands are handled in a separate thread where the player lives.
These two extra elements add some indirection so that the player is not too strongly coupled to the rest of the app (it does not and should not care about most events, after all!). Moreover, those commands are handled in a separate thread where the player lives.

\begin{figure}[!ht]
\centering
Expand Down
2 changes: 1 addition & 1 deletion src/api/cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub enum CachePolicy {
Default, // query remote cache when stale
IgnoreExpiry, // always use cached value
Revalidate, // always query remote cache
IgnoreCached, // ignore cache alltogether
IgnoreCached, // ignore cache all together
}

#[derive(PartialEq, Clone, Debug)]
Expand Down
2 changes: 1 addition & 1 deletion src/app/batch_loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ impl BatchLoader {
error!("Spotify API error: {}", err);
AppAction::ShowNotification(gettext(
// translators: This notification is the default message for unhandled errors. Logs refer to console output.
"An error occured. Check logs for details!",
"An error occurred. Check logs for details!",
))
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ impl dyn ActionDispatcher {
error!("Spotify API error: {}", err);
vec![AppAction::ShowNotification(gettext(
// translators: This notification is the default message for unhandled errors. Logs refer to console output.
"An error occured. Check logs for details!",
"An error occurred. Check logs for details!",
))]
}
}
Expand Down