summaryrefslogtreecommitdiff
path: root/docs/examples.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples.rst')
-rw-r--r--docs/examples.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples.rst b/docs/examples.rst
index a0e3a01..8bc05c0 100644
--- a/docs/examples.rst
+++ b/docs/examples.rst
@@ -158,7 +158,7 @@ you can easily do this with the ``ns.IGNORECASE`` option:
>>> natsorted(a, alg=ns.IGNORECASE)
['Apple', 'apple', 'Banana', 'banana', 'corn', 'Corn']
-Note thats since Python's sorting is stable, the order of equivalent
+Note that's since Python's sorting is stable, the order of equivalent
elements after lowering the case is the same order they appear in the
original list.