diff --git a/sdk/lib/conutils/outstream.c b/sdk/lib/conutils/outstream.c index 6a45630a9bb..9dd0dfa1207 100644 --- a/sdk/lib/conutils/outstream.c +++ b/sdk/lib/conutils/outstream.c @@ -831,7 +831,7 @@ ConResPrintf( * Similarly to ConPuts(), no terminating new-line character is appended. * * @see ConPuts(), ConResPuts() and associated functions, - * FormatMessage() (on MSDN) + * FormatMessage() (on MSDN) **/ INT ConMsgPuts( @@ -846,7 +846,7 @@ ConMsgPuts( LPWSTR lpMsgBuf = NULL; /* - * Sanitize dwFlags. This version always ignore explicitely the inserts + * Sanitize dwFlags. This version always ignores explicitly the inserts * as we emulate the behaviour of the (f)puts function. */ dwFlags |= FORMAT_MESSAGE_ALLOCATE_BUFFER; // Always allocate an internal buffer. @@ -919,7 +919,7 @@ ConMsgPrintf2V( LPWSTR lpMsgBuf = NULL; /* - * Sanitize dwFlags. This version always ignore explicitely the inserts. + * Sanitize dwFlags. This version always ignores explicitly the inserts. * The string that we will return to the user will not be pre-formatted. */ dwFlags |= FORMAT_MESSAGE_ALLOCATE_BUFFER; // Always allocate an internal buffer. @@ -1024,7 +1024,7 @@ ConMsgPrintf2V( * Numbers of characters successfully written to @p Stream. * * @see ConPrintf(), ConResPrintf() and associated functions, ConMsgPrintf(), - * FormatMessage() (on MSDN) + * FormatMessage() (on MSDN) **/ INT ConMsgPrintfV( @@ -1123,7 +1123,7 @@ ConMsgPrintfV( * Numbers of characters successfully written to @p Stream. * * @see ConPrintf(), ConResPrintf() and associated functions, ConMsgPrintfV(), - * FormatMessage() (on MSDN) + * FormatMessage() (on MSDN) **/ INT __cdecl @@ -1212,7 +1212,7 @@ ConMsgPrintf( * Numbers of characters successfully written to @p Stream. * * @see ConPrintf(), ConResPrintf() and associated functions, ConMsgPrintf(), - * FormatMessage() (on MSDN) + * FormatMessage() (on MSDN) **/ INT ConResMsgPrintfExV( @@ -1323,7 +1323,7 @@ ConResMsgPrintfExV( * Numbers of characters successfully written to @p Stream. * * @see ConPrintf(), ConResPrintf() and associated functions, ConMsgPrintf(), - * FormatMessage() (on MSDN) + * FormatMessage() (on MSDN) **/ INT ConResMsgPrintfV( @@ -1387,7 +1387,7 @@ ConResMsgPrintfV( * Numbers of characters successfully written to @p Stream. * * @see ConPrintf(), ConResPrintf() and associated functions, ConMsgPrintf(), - * FormatMessage() (on MSDN) + * FormatMessage() (on MSDN) **/ INT __cdecl @@ -1454,7 +1454,7 @@ ConResMsgPrintfEx( * Numbers of characters successfully written to @p Stream. * * @see ConPrintf(), ConResPrintf() and associated functions, ConMsgPrintf(), - * FormatMessage() (on MSDN) + * FormatMessage() (on MSDN) **/ INT __cdecl diff --git a/sdk/lib/conutils/utils.c b/sdk/lib/conutils/utils.c index 15c7ac028f4..31fe8951092 100644 --- a/sdk/lib/conutils/utils.c +++ b/sdk/lib/conutils/utils.c @@ -247,7 +247,7 @@ K32LoadStringW( * crash if a malformed source string is retrieved and then being used * for formatting. It basically wraps calls to FormatMessage() within SEH. * - * @see FormatMessage() (on MSDN) + * @see FormatMessage() (on MSDN) **/ DWORD WINAPI @@ -290,7 +290,7 @@ FormatMessageSafeW( * and we did not pass the flag FORMAT_MESSAGE_IGNORE_INSERTS, and the * message string expected too many inserts. * In this last case only, we can call again FormatMessage but ignore - * explicitely the inserts. The string that we will return to the user + * explicitly the inserts. The string that we will return to the user * will not be pre-formatted. */ if (((dwFlags & FORMAT_MESSAGE_ALLOCATE_BUFFER) || lpBuffer) &&