diff --git a/README.md b/README.md index 89042e19..a90a568d 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/build-aux/flatpak-cargo-generator.py b/build-aux/flatpak-cargo-generator.py index 69c1fb2d..b3e6e41c 100644 --- a/build-aux/flatpak-cargo-generator.py +++ b/build-aux/flatpak-cargo-generator.py @@ -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() diff --git a/data/dev.alextren.Spot.appdata.xml b/data/dev.alextren.Spot.appdata.xml index 069cbe4f..a7e97c1d 100644 --- a/data/dev.alextren.Spot.appdata.xml +++ b/data/dev.alextren.Spot.appdata.xml @@ -30,7 +30,7 @@
- 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!
diff --git a/doc/doc.tex b/doc/doc.tex index 3c9750f5..99e668b5 100644 --- a/doc/doc.tex +++ b/doc/doc.tex @@ -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 diff --git a/src/api/cache.rs b/src/api/cache.rs index e2359a7a..5d3f8193 100644 --- a/src/api/cache.rs +++ b/src/api/cache.rs @@ -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)] diff --git a/src/app/batch_loader.rs b/src/app/batch_loader.rs index 71664f66..d080b38f 100644 --- a/src/app/batch_loader.rs +++ b/src/app/batch_loader.rs @@ -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!", )) } } diff --git a/src/app/components/mod.rs b/src/app/components/mod.rs index 86d4809e..509b9cb2 100644 --- a/src/app/components/mod.rs +++ b/src/app/components/mod.rs @@ -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!", ))] } }