aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Chase <github@tim.thechases.com>2017-06-03 19:48:26 -0500
committerWaylan Limberg <waylan.limberg@icloud.com>2017-06-03 21:37:11 -0400
commitb7db1ec1d1e940dec46e24639bbd8c34d6d853d9 (patch)
tree45fbab3d3e7fe7f8d140cfb7bb1e4485ad18489a
parent4f1f7da9500d32f62e5685d17aae2d8192e4aa6e (diff)
downloadmarkdown-b7db1ec1d1e940dec46e24639bbd8c34d6d853d9.tar.gz
markdown-b7db1ec1d1e940dec46e24639bbd8c34d6d853d9.tar.bz2
markdown-b7db1ec1d1e940dec46e24639bbd8c34d6d853d9.zip
Fix typo s/Goggle/Google/
-rw-r--r--markdown/inlinepatterns.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/inlinepatterns.py b/markdown/inlinepatterns.py
index 37c9afa..218b416 100644
--- a/markdown/inlinepatterns.py
+++ b/markdown/inlinepatterns.py
@@ -458,7 +458,7 @@ class ReferencePattern(LinkPattern):
except IndexError:
id = None
if not id:
- # if we got something like "[Google][]" or "[Goggle]"
+ # if we got something like "[Google][]" or "[Google]"
# we'll use "google" as the id
id = m.group(2).lower()