From 233e72fef190dfd872843ac0d1efcc65dec0ee57 Mon Sep 17 00:00:00 2001 From: Luca Benci Date: Tue, 17 Oct 2017 22:38:11 +0200 Subject: [PATCH] Adjust docstring --- qutebrowser/misc/editor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qutebrowser/misc/editor.py b/qutebrowser/misc/editor.py index 69a83ffb5..3c7522568 100644 --- a/qutebrowser/misc/editor.py +++ b/qutebrowser/misc/editor.py @@ -159,7 +159,8 @@ class ExternalEditor(QObject): """Start the editor with the file opened as self._filename. Args: - caret_position: The position of the caret in the text. + line: the line number to pass to the editor + column: the column number to pass to the editor """ self._proc = guiprocess.GUIProcess(what='editor', parent=self) self._proc.finished.connect(self.on_proc_closed)