Skip to content

Commit 1e78016

Browse files
yarikopticclaude
andcommitted
Fix ambiguous typos manually
Fixed typos that codespell detected but didn't auto-fix: - extact → extract (extract all mods) - initate → initiate (initiate visual destruction) - troube → trouble (is trouble) - essentiall → essentially (essentially disable) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 19141cd commit 1e78016

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

acceleratorparse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export class AcceleratorParse {
6060
* @param {String} keystr
6161
*/
6262
accelerator_mask(keystr) {
63-
// need to extact all mods from keystr
63+
// need to extract all mods from keystr
6464
const mods = this.accelerator_mods(keystr);
6565
let result = 0;
6666
for (let mod of mods) {

navigator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ class ActionDispatcher {
178178
}
179179

180180
// Popping the modal on keypress doesn't work properly, as the release
181-
// event will leak to the active window. To work around this we initate
181+
// event will leak to the active window. To work around this we initiate
182182
// visual destruction on key-press and signal to the release handler
183183
// that we should destroy the dispactcher too
184184
// https://github.com/paperwm/PaperWM/issues/70

tiling.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3774,7 +3774,7 @@ export function resizeHandler(metaWindow) {
37743774
};
37753775
}
37763776

3777-
// Resizing from within a size-changed signal is troube (#73). Queue instead.
3777+
// Resizing from within a size-changed signal is trouble (#73). Queue instead.
37783778
space.queueLayout(true, { callback, centerIfOne: false });
37793779
}
37803780

utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ export class Signals extends Map {
563563
*/
564564
export let Easer = {
565565
/**
566-
* Safer time setting to essentiall disable easer animation.
566+
* Safer time setting to essentially disable easer animation.
567567
* Setting to values lower than this can have some side-effects
568568
* like "jumpy" three-finger left/right swiping etc.
569569
*/

0 commit comments

Comments
 (0)