https://git.reactos.org/?p=reactos.git;a=commitdiff;h=f268430c053c46def90ab…
commit f268430c053c46def90ab399074ec02df9a79acd
Author:     Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
AuthorDate: Tue May 25 23:34:01 2021 +0200
Commit:     Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
CommitDate: Wed May 26 01:42:09 2021 +0200
    [CONUTILS] Update some documentation.
---
 sdk/lib/conutils/outstream.c | 18 +++++++++---------
 sdk/lib/conutils/utils.c     |  4 ++--
 2 files changed, 11 insertions(+), 11 deletions(-)
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,
- *      <a
href="https://msdn.microsoft.com/en-us/library/windows/desktop/ms67935…
(on MSDN)</a>
+ *      <a
href="https://docs.microsoft.com/en-us/windows/win32/api/winbase/nf-wi…
(on MSDN)</a>
  **/
 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(),
- *      <a
href="https://msdn.microsoft.com/en-us/library/windows/desktop/ms67935…
(on MSDN)</a>
+ *      <a
href="https://docs.microsoft.com/en-us/windows/win32/api/winbase/nf-wi…
(on MSDN)</a>
  **/
 INT
 ConMsgPrintfV(
@@ -1123,7 +1123,7 @@ ConMsgPrintfV(
  *     Numbers of characters successfully written to @p Stream.
  *
  * @see ConPrintf(), ConResPrintf() and associated functions, ConMsgPrintfV(),
- *      <a
href="https://msdn.microsoft.com/en-us/library/windows/desktop/ms67935…
(on MSDN)</a>
+ *      <a
href="https://docs.microsoft.com/en-us/windows/win32/api/winbase/nf-wi…
(on MSDN)</a>
  **/
 INT
 __cdecl
@@ -1212,7 +1212,7 @@ ConMsgPrintf(
  *     Numbers of characters successfully written to @p Stream.
  *
  * @see ConPrintf(), ConResPrintf() and associated functions, ConMsgPrintf(),
- *      <a
href="https://msdn.microsoft.com/en-us/library/windows/desktop/ms67935…
(on MSDN)</a>
+ *      <a
href="https://docs.microsoft.com/en-us/windows/win32/api/winbase/nf-wi…
(on MSDN)</a>
  **/
 INT
 ConResMsgPrintfExV(
@@ -1323,7 +1323,7 @@ ConResMsgPrintfExV(
  *     Numbers of characters successfully written to @p Stream.
  *
  * @see ConPrintf(), ConResPrintf() and associated functions, ConMsgPrintf(),
- *      <a
href="https://msdn.microsoft.com/en-us/library/windows/desktop/ms67935…
(on MSDN)</a>
+ *      <a
href="https://docs.microsoft.com/en-us/windows/win32/api/winbase/nf-wi…
(on MSDN)</a>
  **/
 INT
 ConResMsgPrintfV(
@@ -1387,7 +1387,7 @@ ConResMsgPrintfV(
  *     Numbers of characters successfully written to @p Stream.
  *
  * @see ConPrintf(), ConResPrintf() and associated functions, ConMsgPrintf(),
- *      <a
href="https://msdn.microsoft.com/en-us/library/windows/desktop/ms67935…
(on MSDN)</a>
+ *      <a
href="https://docs.microsoft.com/en-us/windows/win32/api/winbase/nf-wi…
(on MSDN)</a>
  **/
 INT
 __cdecl
@@ -1454,7 +1454,7 @@ ConResMsgPrintfEx(
  *     Numbers of characters successfully written to @p Stream.
  *
  * @see ConPrintf(), ConResPrintf() and associated functions, ConMsgPrintf(),
- *      <a
href="https://msdn.microsoft.com/en-us/library/windows/desktop/ms67935…
(on MSDN)</a>
+ *      <a
href="https://docs.microsoft.com/en-us/windows/win32/api/winbase/nf-wi…
(on MSDN)</a>
  **/
 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 <a
href="https://msdn.microsoft.com/en-us/library/windows/desktop/ms67935…
(on MSDN)</a>
+ * @see <a
href="https://docs.microsoft.com/en-us/windows/win32/api/winbase/nf-wi…
(on MSDN)</a>
  **/
 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) &&