summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.