summaryrefslogtreecommitdiff
path: root/sphinx/environment/adapters
diff options
context:
space:
mode:
authorEisuke Kawashima <e-kwsm@users.noreply.github.com>2021-07-08 01:29:38 +0900
committerEisuke Kawashima <e-kwsm@users.noreply.github.com>2021-07-08 08:16:22 +0900
commit652ebf1bf56f7e35a3be657244b2f6a863cb78d7 (patch)
tree4ea34f2d7f58b65cbeac5bf497010eece7bfe23e /sphinx/environment/adapters
parentb09acabf0010ca95bab6f89012bb0e367cc1248e (diff)
downloadsphinx-git-652ebf1bf56f7e35a3be657244b2f6a863cb78d7.tar.gz
Fix typo
Diffstat (limited to 'sphinx/environment/adapters')
-rw-r--r--sphinx/environment/adapters/indexentries.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/environment/adapters/indexentries.py b/sphinx/environment/adapters/indexentries.py
index 5b7510143..8af19e7bf 100644
--- a/sphinx/environment/adapters/indexentries.py
+++ b/sphinx/environment/adapters/indexentries.py
@@ -112,7 +112,7 @@ class IndexEntries:
else:
# put symbols at the front of the index (0)
sortkey = (0, lckey)
- # ensure a determinstic order *within* letters by also sorting on
+ # ensure a deterministic order *within* letters by also sorting on
# the entry itself
return (sortkey, entry[0])
newlist = sorted(new.items(), key=keyfunc)