From c24374f99c22d9420d6d182ff835f07a5b954b48 Mon Sep 17 00:00:00 2001 From: planetmaker Date: Tue, 8 Jan 2013 22:46:42 +0000 Subject: (svn r24900) -Fix [FS#5389]: Comments with typos (most fixes supplied by Eagle_rainbow) --- src/string.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/string.cpp') diff --git a/src/string.cpp b/src/string.cpp index 4f7865ada..3d0073d38 100644 --- a/src/string.cpp +++ b/src/string.cpp @@ -250,7 +250,7 @@ void str_validate(char *str, const char *last, StringValidationSettings settings if ((settings & SVS_REPLACE_WITH_QUESTION_MARK) != 0) *dst++ = '?'; /* In case of these two special cases assume that they really - * mean SETX/SETXY and also "eat" the paramater. If this was + * mean SETX/SETXY and also "eat" the parameter. If this was * not the case the string was broken to begin with and this * would not break much more. */ if (c == SCC_SETX) { @@ -413,7 +413,7 @@ int CDECL vsnprintf(char *str, size_t size, const char *format, va_list ap) } } else if ((size_t)ret < size) { /* The buffer is big enough for the number of - * characers stored (excluding null), i.e. + * characters stored (excluding null), i.e. * the string has been null-terminated. */ return ret; } -- cgit v1.2.3-54-g00ecf