summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scipy/base/src/_sortmodule.c.src4
1 files changed, 2 insertions, 2 deletions
diff --git a/scipy/base/src/_sortmodule.c.src b/scipy/base/src/_sortmodule.c.src
index 35060eea7..ccf7a0f84 100644
--- a/scipy/base/src/_sortmodule.c.src
+++ b/scipy/base/src/_sortmodule.c.src
@@ -12,8 +12,8 @@
be slower than the merge and heap sorts. The merge sort requires
extra memory and so for large arrays may not be useful.
- Both the heap and merge sorts are *stable* meaning that equal components
- are unmoved from their entry versions and so can be used to
+ The merge sort is *stable*, meaning that equal components
+ are unmoved from their entry versions, so it can be used to
implement lexigraphic sorting on multiple keys.
*/