diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2008-07-05 11:29:03 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2008-07-05 11:29:03 (GMT) |
commit | 0d748c2fa467d6fa0e9c98571b649c57cddc2242 (patch) | |
tree | 61f62631eb4c884e029b2557d213822ccde0e795 /Python | |
parent | a073e33746ba6842850d1aa7833fcfaf1d1e74b7 (diff) | |
download | cpython-0d748c2fa467d6fa0e9c98571b649c57cddc2242.zip cpython-0d748c2fa467d6fa0e9c98571b649c57cddc2242.tar.gz cpython-0d748c2fa467d6fa0e9c98571b649c57cddc2242.tar.bz2 |
Docstring typo
Diffstat (limited to 'Python')
-rw-r--r-- | Python/bltinmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index bd826f0..723c307 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -1726,7 +1726,7 @@ PyDoc_STRVAR(round_doc, "round(number[, ndigits]) -> floating point number\n\ \n\ Round a number to a given precision in decimal digits (default 0 digits).\n\ -This returns an int when called with one argument, otherwise a the\n\ +This returns an int when called with one argument, otherwise the\n\ same type as the number. ndigits may be negative."); |