summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2022-04-15 12:36:12 +0200
committerPatrick Spek <p.spek@tyil.nl>2022-04-15 12:36:12 +0200
commit01dc48281a4acc2aa5e3127656243c4d749d3c75 (patch)
tree02f71124b7b48e318f0d93513226fe6d431ca483 /content
parent7450117f32c0bf55462b697cf1e049c76884cbb0 (diff)
Fix typo pointed out by avoidr
Diffstat (limited to 'content')
-rw-r--r--content/posts/2022/2022-04-15-fixing-w-in-tremc.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/posts/2022/2022-04-15-fixing-w-in-tremc.md b/content/posts/2022/2022-04-15-fixing-w-in-tremc.md
index 31adf13..a313fa7 100644
--- a/content/posts/2022/2022-04-15-fixing-w-in-tremc.md
+++ b/content/posts/2022/2022-04-15-fixing-w-in-tremc.md
@@ -63,7 +63,7 @@ So opening up the file again with everyone's favourite editor, I search around
for the `quit_now` function. Surely that'll bring me closer? The `quit_now`
string doesn't seem to be used anywhere else, apart from the function that
defines what the keybind action should do, `action_quit_now`. This seems to
-simply defer to `exit_now`, which leads me to a bit of code with an special case
+simply defer to `exit_now`, which leads me to a bit of code with a special case
to `exit_now` if a certain character is detected. This character appears to be a
`^w`, which is exactly what I'm trying to stop. So, let's patch that out too.