From dfa922805ea54cf1e5519f0c257ac9e6628398ba Mon Sep 17 00:00:00 2001 From: johnwait Date: Thu, 13 Feb 2020 12:56:39 -0500 Subject: [PATCH] Fix for typo on SetCurrentDirectoryW --- sdk-api-src/content/winbase/nf-winbase-setcurrentdirectory.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk-api-src/content/winbase/nf-winbase-setcurrentdirectory.md b/sdk-api-src/content/winbase/nf-winbase-setcurrentdirectory.md index 4890da1a1485..2eab574c1ed4 100644 --- a/sdk-api-src/content/winbase/nf-winbase-setcurrentdirectory.md +++ b/sdk-api-src/content/winbase/nf-winbase-setcurrentdirectory.md @@ -75,7 +75,7 @@ In the ANSI version of this function, the name is limited to MAX_PATH cha The final character before the null character must be a backslash ('\'). If you do not specify the backslash, it will be added for you; therefore, specify MAX_PATH-2 characters for the path unless you include the trailing backslash, in which case, specify MAX_PATH-1 characters for the path. -
Tip  Starting with Windows 10, version 1607, for the unicode version of this function (SetCurrentDirecotryW), you can opt-in to remove the MAX_PATH limitation. See the "Maximum Path Length Limitation" section of Naming Files, Paths, and Namespaces for details.
+
Tip  Starting with Windows 10, version 1607, for the unicode version of this function (SetCurrentDirectoryW), you can opt-in to remove the MAX_PATH limitation. See the "Maximum Path Length Limitation" section of Naming Files, Paths, and Namespaces for details.
 
## -returns