summaryrefslogtreecommitdiff
path: root/Modules/mathmodule.c
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-10-29 20:38:32 +0000
committerGeorg Brandl <georg@python.org>2009-10-29 20:38:32 +0000
commit40777e66061ce8669cd21d4a268459688397acde (patch)
tree2d8f5bdf762c460300fd8ddc05b6dcfe19beee19 /Modules/mathmodule.c
parent6f3900163a50d04ecae173e2703f626f5daf8318 (diff)
downloadcpython-git-40777e66061ce8669cd21d4a268459688397acde.tar.gz
Use the correct function name in docstring.
Diffstat (limited to 'Modules/mathmodule.c')
-rw-r--r--Modules/mathmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c
index b2fee3ff3f..bfbdf7671f 100644
--- a/Modules/mathmodule.c
+++ b/Modules/mathmodule.c
@@ -870,7 +870,7 @@ _fsum_error:
#undef NUM_PARTIALS
PyDoc_STRVAR(math_fsum_doc,
-"sum(iterable)\n\n\
+"fsum(iterable)\n\n\
Return an accurate floating point sum of values in the iterable.\n\
Assumes IEEE-754 floating point arithmetic.");