manual: fix a typo in strtoul description [BZ #21161]

Typo reported by Vincent Lefèvre: 'retrict' -> 'restrict'.

Changelog:
	[BZ #21161]
	* manual/arith.texi (strtoul): Fix a typo.
This commit is contained in:
Aurelien Jarno 2017-12-23 14:53:07 +01:00
parent e65a5644e6
commit f5c558f3ec
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2017-12-23 Aurelien Jarno <aurelien@aurel32.net>
[BZ #21161]
* manual/arith.texi (strtoul): Fix a typo.
[BZ #22596]
* manual/arith.texi (finite): Fix the description of the return
value.

View file

@ -2484,7 +2484,7 @@ in nearly all aspects but handles wide character strings.
The @code{wcstol} function was introduced in @w{Amendment 1} of @w{ISO C90}.
@end deftypefun
@deftypefun {unsigned long int} strtoul (const char *retrict @var{string}, char **restrict @var{tailptr}, int @var{base})
@deftypefun {unsigned long int} strtoul (const char *restrict @var{string}, char **restrict @var{tailptr}, int @var{base})
@standards{ISO, stdlib.h}
@safety{@prelim{}@mtsafe{@mtslocale{}}@assafe{}@acsafe{}}
The @code{strtoul} (``string-to-unsigned-long'') function is like