From 02277bed3446889528b15a8b4c8e0ee88270ff68 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Fri, 8 Jun 2018 17:32:51 +0200 Subject: [PATCH] scanutils: Fix typos in comments Signed-off-by: Stefan Weil --- src/ccutil/scanutils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ccutil/scanutils.h b/src/ccutil/scanutils.h index dc3dfe08..b2f15580 100644 --- a/src/ccutil/scanutils.h +++ b/src/ccutil/scanutils.h @@ -45,12 +45,12 @@ uintmax_t streamtoumax(FILE* s, int base); // Parse a file stream according to the given format. See the fscanf manpage // 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, ...); // Parse a file stream according to the given format. See the fscanf manpage // 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); // Create a file at the specified path. See the creat manpage for more