summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Morton <seth.m.morton@gmail.com>2023-02-26 20:40:35 -0800
committerSeth Morton <seth.m.morton@gmail.com>2023-02-26 20:40:35 -0800
commitda63947a40a2ef4c759f02aac2e8e78d010e4411 (patch)
treeb2e53c66728d5de0b6801117fcd4f4d0c7f51c15
parent77a8444261cd0428e0d308597a3f21f3174c4d67 (diff)
downloadnatsort-da63947a40a2ef4c759f02aac2e8e78d010e4411.tar.gz
Another README typo
-rw-r--r--README.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index d735ab5..648488b 100644
--- a/README.rst
+++ b/README.rst
@@ -323,7 +323,7 @@ How *does* `natsort`_ work?
`natsort`_ provides a `key function`_ that can be passed to `list.sort()`_
or `sorted()`_ in order to modify the default sorting behavior. This key
- is generated on-demand with the key generator `natsort.natsort_keygen()`_.
+ is generated on-demand with the key generator `natsort_keygen()`_.
`natsorted()_` is essentially a wrapper for the following code:
.. code-block:: pycon