summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2022-03-31 21:07:24 +0200
committerFlorian Bruhin <me@the-compiler.org>2022-03-31 21:07:24 +0200
commit8a6922691211b8c0b60dc894aed8fd69336aef21 (patch)
tree00008ea69e346bc867f0f3162a12893882775cb3
parentecf63880dc04e2ec5825b5e692ad0c3895c0b8d8 (diff)
downloadqutebrowser-8a6922691211b8c0b60dc894aed8fd69336aef21.tar.gz
qutebrowser-8a6922691211b8c0b60dc894aed8fd69336aef21.zip
Fix spelling
-rw-r--r--doc/help/commands.asciidoc4
-rw-r--r--qutebrowser/components/readlinecommands.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/help/commands.asciidoc b/doc/help/commands.asciidoc
index 58019f937..6003c0f1f 100644
--- a/doc/help/commands.asciidoc
+++ b/doc/help/commands.asciidoc
@@ -1943,7 +1943,7 @@ This acts like readline's end-of-line.
=== rl-filename-rubout
Delete backwards using the OS path separator as boundary.
-For behavior that matches readline's `unix-filename-rubout` exactly, use `:rl-rubout "/ "` instead. This command uses the OS path seperator (i.e. `\` on Windows) and ignores spaces.
+For behavior that matches readline's `unix-filename-rubout` exactly, use `:rl-rubout "/ "` instead. This command uses the OS path separator (i.e. `\` on Windows) and ignores spaces.
[[rl-forward-char]]
=== rl-forward-char
@@ -1975,7 +1975,7 @@ Syntax: +:rl-rubout 'delim'+
Delete backwards using the given characters as boundaries.
-With " ", this acts like readline's `unix-word-rubout`. With " /", this acts like readline's `unix-filename-rubout`, but consider using `:rl-filename-rubout` instead: It uses the OS path seperator (i.e. `\` on Windows) and ignores spaces.
+With " ", this acts like readline's `unix-word-rubout`. With " /", this acts like readline's `unix-filename-rubout`, but consider using `:rl-filename-rubout` instead: It uses the OS path separator (i.e. `\` on Windows) and ignores spaces.
==== positional arguments
* +'delim'+: A string of characters (or a single character) until which text will be deleted.
diff --git a/qutebrowser/components/readlinecommands.py b/qutebrowser/components/readlinecommands.py
index 6c2a2399f..4ac03041c 100644
--- a/qutebrowser/components/readlinecommands.py
+++ b/qutebrowser/components/readlinecommands.py
@@ -295,7 +295,7 @@ def rl_rubout(delim: str) -> None:
With " ", this acts like readline's `unix-word-rubout`.
With " /", this acts like readline's `unix-filename-rubout`, but consider
- using `:rl-filename-rubout` instead: It uses the OS path seperator (i.e. `\`
+ using `:rl-filename-rubout` instead: It uses the OS path separator (i.e. `\`
on Windows) and ignores spaces.
Args:
@@ -310,7 +310,7 @@ def rl_filename_rubout() -> None:
r"""Delete backwards using the OS path separator as boundary.
For behavior that matches readline's `unix-filename-rubout` exactly, use
- `:rl-rubout "/ "` instead. This command uses the OS path seperator (i.e.
+ `:rl-rubout "/ "` instead. This command uses the OS path separator (i.e.
`\` on Windows) and ignores spaces.
"""
bridge.rubout(os.sep)