Skip to content

Commit 24fd425

Browse files
Merge pull request #1017 from Skinner927/patch-1
Fix escaped backslashes
2 parents 60416bd + fe15a8b commit 24fd425

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk-api-src/content/winbase/nf-winbase-movefileexw.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ If <i>dwFlags</i> specifies <b>MOVEFILE_DELAY_UNTIL_REBOOT</b>, the
8484

8585
In the ANSI version of this function, the name is limited to <b>MAX_PATH</b> characters.
8686
To extend this limit to 32,767 wide characters, call the Unicode version of the function and prepend
87-
"\\?\" to the path. For more information, see
87+
"`\\?\`" to the path. For more information, see
8888
<a href="/windows/desktop/FileIO/naming-a-file">Naming a File</a>
8989

9090

@@ -110,7 +110,7 @@ If <i>dwFlags</i> specifies <b>MOVEFILE_DELAY_UNTIL_REBOOT</b> and
110110

111111
In the ANSI version of this function, the name is limited to <b>MAX_PATH</b> characters.
112112
To extend this limit to 32,767 wide characters, call the Unicode version of the function and prepend
113-
"\\?\" to the path. For more information, see
113+
"`\\?\`" to the path. For more information, see
114114
<a href="/windows/desktop/FileIO/naming-a-file">Naming a File</a>
115115

116116

0 commit comments

Comments
 (0)