From 3be10251eb8b6d830b63e59b6a34db1ee1efdd32 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 22 Dec 2020 08:17:01 +1100 Subject: [PATCH] docs: fix simple typo, requres -> requires There is a small typo in bin/autojump_utils.py. Should read `requires` rather than `requres`. --- bin/autojump_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/autojump_utils.py b/bin/autojump_utils.py index d1c48ab..ded17fd 100644 --- a/bin/autojump_utils.py +++ b/bin/autojump_utils.py @@ -194,7 +194,7 @@ def surround_quotes(string): path outputs with quotes. """ if in_bash() and string: - # Python 2.6 requres field numbers + # Python 2.6 requires field numbers return '"{0}"'.format(string) return string