From 91ad91cc7b89a0752b0f540cf83dc3cf6ea00894 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 18 May 2015 22:27:44 +0200 Subject: [PATCH] Spelling fixes. --- qutebrowser/browser/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qutebrowser/browser/commands.py b/qutebrowser/browser/commands.py index 68c2540b7..7dcc02758 100644 --- a/qutebrowser/browser/commands.py +++ b/qutebrowser/browser/commands.py @@ -1330,7 +1330,7 @@ class CommandDispatcher: @cmdutils.register(instance='command-dispatcher', hide=True, modes=[KeyMode.caret], scope='window', count='count') def move_to_start_of_line(self, count=1): - """Move the cursor or select to the start of line.""" + """Move the cursor or selection to the start of the line.""" webview = self._current_widget() if not webview.selection_enabled: act = QWebPage.MoveToStartOfLine @@ -1342,7 +1342,7 @@ class CommandDispatcher: @cmdutils.register(instance='command-dispatcher', hide=True, modes=[KeyMode.caret], scope='window', count='count') def move_to_end_of_line(self, count=1): - """Move the cursor or select to the end of line.""" + """Move the cursor or selection to the end of line.""" webview = self._current_widget() if not webview.selection_enabled: act = QWebPage.MoveToEndOfLine