summaryrefslogtreecommitdiffstats
path: root/newlib/libc/stdlib/strtoul.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdlib/strtoul.c')
-rw-r--r--newlib/libc/stdlib/strtoul.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdlib/strtoul.c b/newlib/libc/stdlib/strtoul.c
index 062606f4e..aa5897e13 100644
--- a/newlib/libc/stdlib/strtoul.c
+++ b/newlib/libc/stdlib/strtoul.c
@@ -85,10 +85,10 @@ The alternate function <<_strtoul_r>> is a reentrant version. The
extra argument <[reent]> is a pointer to a reentrancy structure.
RETURNS
-<<strtoul>>, <strtoul_l>> return the converted value, if any. If no
+<<strtoul>>, <<strtoul_l>> return the converted value, if any. If no
conversion was made, <<0>> is returned.
-<<strtoul>>, <strtoul_l>> return <<ULONG_MAX>> if the magnitude of the
+<<strtoul>>, <<strtoul_l>> return <<ULONG_MAX>> if the magnitude of the
converted value is too large, and sets <<errno>> to <<ERANGE>>.
PORTABILITY