summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKrzysztof Gogolewski <krzysztof.gogolewski@tweag.io>2020-10-01 21:32:52 +0200
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-10-02 08:00:25 -0400
commita9ae83af9e0cf48e860f2b7e1d50a057cb8a7890 (patch)
tree3aa9de1ffd2ac471b14a0342a5a2e8bbba6f5a90 /docs
parent1edd6d21c0abea34b498a627234a97df21648024 (diff)
downloadhaskell-a9ae83af9e0cf48e860f2b7e1d50a057cb8a7890.tar.gz
Fix typos in comments
[skip ci]
Diffstat (limited to 'docs')
-rw-r--r--docs/users_guide/flags.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/users_guide/flags.py b/docs/users_guide/flags.py
index 8d09971a5f..f6927d5981 100644
--- a/docs/users_guide/flags.py
+++ b/docs/users_guide/flags.py
@@ -257,7 +257,7 @@ class LanguageExtension(GenericFlag):
@staticmethod
def _noname(name):
# We check isupper() so that NondecreasingIndentation
- # is not counted as "No-decreasingIndentation"
+ # is not counted as "No-ndecreasingIndentation"
if name[:2] == "No" and name[2].isupper():
return name[2:]
else: