Skip to content

Commit 6e65cae

Browse files
committed
Fix typos
Found via `codespell -S po -L crate,homestate,trough`
1 parent eb347ae commit 6e65cae

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Similarly, snap also requires that you install the corresponding snap for your t
5656
**Only works with premium accounts!**
5757

5858
- playback control (play/pause, prev/next, seeking, shuffle, repeat (none, all, song))
59-
- selection mode: easily browse and select mutliple tracks to queue them
59+
- selection mode: easily browse and select multiple tracks to queue them
6060
- browse your saved albums and playlists
6161
- search albums and artists
6262
- view an artist's releases

build-aux/flatpak-cargo-generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def get_git_sources(package):
7878
name = package['name']
7979
source = package['source']
8080
commit = urlparse(source).fragment
81-
assert commit, 'The commit needs to be indicated in the fragement part'
81+
assert commit, 'The commit needs to be indicated in the fragment part'
8282
canonical = canonical_url(source)
8383
repo_url = canonical.geturl()
8484

data/dev.alextren.Spot.appdata.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<ul>
3131
<li>playback control (play/pause, prev/next, seeking)</li>
3232
<li>play queue with shuffle option</li>
33-
<li>selection mode: easily browse and select mutliple tracks to queue them</li>
33+
<li>selection mode: easily browse and select multiple tracks to queue them</li>
3434
<li>browse your saved albums and playlists</li>
3535
<li>search albums and artists</li>
3636
<li>view an artist's releases</li>
@@ -252,7 +252,7 @@
252252
New feature: the main window can now be closed without stopping playback. Use Quit or Ctrl+Q to exit the app.
253253
</p>
254254
<p>
255-
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!
255+
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!
256256
</p>
257257
</description>
258258
</release>

doc/doc.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ \subsection{A listener: the player subsystem}
8383

8484
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}).
8585

86-
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.
86+
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.
8787

8888
\begin{figure}[!ht]
8989
\centering

src/api/cache.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ pub enum CachePolicy {
4040
Default, // query remote cache when stale
4141
IgnoreExpiry, // always use cached value
4242
Revalidate, // always query remote cache
43-
IgnoreCached, // ignore cache alltogether
43+
IgnoreCached, // ignore cache altogether
4444
}
4545

4646
#[derive(PartialEq, Clone, Debug)]

src/app/batch_loader.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ impl BatchLoader {
8888
error!("Spotify API error: {}", err);
8989
AppAction::ShowNotification(gettext(
9090
// translators: This notification is the default message for unhandled errors. Logs refer to console output.
91-
"An error occured. Check logs for details!",
91+
"An error occurred. Check logs for details!",
9292
))
9393
}
9494
}

src/app/components/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ impl dyn ActionDispatcher {
119119
error!("Spotify API error: {}", err);
120120
vec![AppAction::ShowNotification(gettext(
121121
// translators: This notification is the default message for unhandled errors. Logs refer to console output.
122-
"An error occured. Check logs for details!",
122+
"An error occurred. Check logs for details!",
123123
))]
124124
}
125125
}

0 commit comments

Comments
 (0)