Skip to content

Commit f54ad03

Browse files
committed
Make codespell happy.
1 parent 44aaa48 commit f54ad03

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

libcscreensaver/cs-auth-pam.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ cs_auth_run_message_handler (struct pam_closure *c,
234234
g_idle_add ((GSourceFunc) cs_auth_queued_message_handler, &data);
235235

236236
if (cs_auth_get_verbose ()) {
237-
DEBUG ("cs-auth-pam (pid %i): Waiting for respose to message style %d: '%s'\n", getpid (), style, msg);
237+
DEBUG ("cs-auth-pam (pid %i): Waiting for response to message style %d: '%s'\n", getpid (), style, msg);
238238
}
239239

240240
/* Wait for the response
@@ -244,7 +244,7 @@ cs_auth_run_message_handler (struct pam_closure *c,
244244
g_mutex_unlock (message_handler_mutex);
245245

246246
if (cs_auth_get_verbose ()) {
247-
DEBUG ("cs-auth-pam (pid %i): Got respose to message style %d: interrupt:%d\n", getpid (), style, data.should_interrupt_stack);
247+
DEBUG ("cs-auth-pam (pid %i): Got response to message style %d: interrupt:%d\n", getpid (), style, data.should_interrupt_stack);
248248
}
249249

250250
return data.should_interrupt_stack == FALSE;

libcscreensaver/cs-event-grabber.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ cs_event_grabber_grab_window (CsEventGrabber *grab,
538538
is that both a keyboard grab and a mouse grab are mandatory
539539
540540
- If we don't have a keyboard grab, then we won't be able to
541-
read a password to unlock, so the kbd grab is manditory.
541+
read a password to unlock, so the kbd grab is mandatory.
542542
543543
- If we don't have a mouse grab, then we might not see mouse
544544
clicks as a signal to unblank, on-screen widgets won't work ideally,

libcscreensaver/org.mpris.MediaPlayer2.Player.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
</tp:enumvalue>
3939
<tp:enumvalue suffix="Track" value="Track">
4040
<tp:docstring xmlns="http://www.w3.org/1999/xhtml">
41-
<p>The current track will start again from the begining once it has finished playing</p>
41+
<p>The current track will start again from the beginning once it has finished playing</p>
4242
</tp:docstring>
4343
</tp:enumvalue>
4444
<tp:enumvalue suffix="Playlist" value="Playlist">
@@ -328,7 +328,7 @@
328328
<p>May be:
329329
<ul>
330330
<li>"None" if the playback will stop when there are no more tracks to play</li>
331-
<li>"Track" if the current track will start again from the begining once it has finished playing</li>
331+
<li>"Track" if the current track will start again from the beginning once it has finished playing</li>
332332
<li>"Playlist" if the playback loops through a list of tracks</li>
333333
</ul>
334334
</p>
@@ -440,9 +440,9 @@
440440
setting this property has no effect and can raise an error.
441441
</p>
442442
<p>
443-
If the playback progresses in a way that is inconstistant with the
443+
If the playback progresses in a way that is inconsistent with the
444444
<tp:member-ref>Rate</tp:member-ref> property, the
445-
<tp:member-ref>Seeked</tp:member-ref> signal is emited.
445+
<tp:member-ref>Seeked</tp:member-ref> signal is emitted.
446446
</p>
447447
</tp:docstring>
448448
</property>

src/singletons.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# clients that the screensaver initializes, that can never fail. The actual connection
1616
# business to the various dbus address is performed asynchronously from within each client.
1717
# The following clients can fail to establish with their respective dbus interfaces without
18-
# competely breaking the program (or at least that's what we're after) - it just means that
18+
# completely breaking the program (or at least that's what we're after) - it just means that
1919
# depending on what fails, you may end up without keyboard shortcut support, or a battery
2020
# widget, etc...
2121
from dbusdepot.cinnamonClient import CinnamonClient as _CinnamonClient

src/stage.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Stage(Gtk.Window):
3232
It is Gtk.WindowType.POPUP to avoid being managed/composited by muffin,
3333
and to prevent animation during its creation and destruction.
3434
35-
The Stage reponds pretty much only to the instructions of the
35+
The Stage responds pretty much only to the instructions of the
3636
ScreensaverManager.
3737
"""
3838
__gsignals__ = {
@@ -876,7 +876,7 @@ def position_overlay_child(self, overlay, child, allocation):
876876
unlock_mw, unlock_nw = self.unlock_dialog.get_preferred_width()
877877
"""
878878
If, for whatever reason, we need more than 1/3 of the screen to fully display
879-
the unlock dialog, reduce our available region width to accomodate it, reducing
879+
the unlock dialog, reduce our available region width to accommodate it, reducing
880880
the allocation for the floating widgets as required.
881881
"""
882882
if unlock_nw > region_w:

src/util/eventHandler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def on_user_activity(self):
3434
def on_motion_event(self, event):
3535
"""
3636
Any mouse movement is sent here - there is a threshold to reach when
37-
asleep, so that inadvertant motion doesn't wake the system unintentionally.
37+
asleep, so that inadvertent motion doesn't wake the system unintentionally.
3838
"""
3939
if status.Awake:
4040
self.on_user_activity()

0 commit comments

Comments
 (0)