Merge pull request #1653 from stweil/typo

scanutils: Fix typos in comments
This commit is contained in:
Egor Pugin 2018-06-09 11:00:22 +03:00 committed by GitHub
commit cd58a861d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,12 +45,12 @@ uintmax_t streamtoumax(FILE* s, int base);
// Parse a file stream according to the given format. See the fscanf manpage // Parse a file stream according to the given format. See the fscanf manpage
// for more information, as this function attempts to mimic its behavior. // for more information, as this function attempts to mimic its behavior.
// Note that scientific loating-point notation is not supported. // Note that scientific floating-point notation is not supported.
int fscanf(FILE* stream, const char *format, ...); int fscanf(FILE* stream, const char *format, ...);
// Parse a file stream according to the given format. See the fscanf manpage // Parse a file stream according to the given format. See the fscanf manpage
// for more information, as this function attempts to mimic its behavior. // for more information, as this function attempts to mimic its behavior.
// Note that scientific loating-point notation is not supported. // Note that scientific floating-point notation is not supported.
int vfscanf(FILE* stream, const char *format, va_list ap); int vfscanf(FILE* stream, const char *format, va_list ap);
// Create a file at the specified path. See the creat manpage for more // Create a file at the specified path. See the creat manpage for more