summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllen Zheng <strburst@users.noreply.github.com>2017-12-26 11:21:02 -0500
committerAllen Zheng <strburst@users.noreply.github.com>2017-12-26 11:21:02 -0500
commitb5a9612840d5f348746904e09b25b63f342f19c2 (patch)
treeae35ee89e9cbfd1c0896a9e4017c505c66180d1d
parentd2f0c5dcac50fdbb3452c719f23426214b0272b2 (diff)
downloadqutebrowser-b5a9612840d5f348746904e09b25b63f342f19c2.tar.gz
qutebrowser-b5a9612840d5f348746904e09b25b63f342f19c2.zip
Fix minor doc typo in example code
There should be an extra parenthesis to close the call to the outer print function.
-rw-r--r--doc/help/configuring.asciidoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/help/configuring.asciidoc b/doc/help/configuring.asciidoc
index 766e6bc7f..a9b7b6ddf 100644
--- a/doc/help/configuring.asciidoc
+++ b/doc/help/configuring.asciidoc
@@ -264,7 +264,7 @@ get a string:
.config.py:
[source,python]
----
-print(str(config.configdir / 'config.py')
+print(str(config.configdir / 'config.py'))
----
Handling errors