diff --git a/sdk-api-src/content/winternl/nf-winternl-ntcreatefile.md b/sdk-api-src/content/winternl/nf-winternl-ntcreatefile.md
index 9323ce8aa2c..7cb2ddb2205 100644
--- a/sdk-api-src/content/winternl/nf-winternl-ntcreatefile.md
+++ b/sdk-api-src/content/winternl/nf-winternl-ntcreatefile.md
@@ -704,7 +704,7 @@ Certain DesiredAccess flags and combinations of flags have the following
- For a caller to synchronize an I/O completion by waiting on the returned FileHandle, the SYNCHRONIZE flag must be set.
-- Passing a zero to DesiredFlags is not valid.
+- Passing a zero to DesiredAccess is not valid.
- If only the FILE_APPEND_DATA and SYNCHRONIZE flags are set, the caller can write only to the end of the file, and any offset information on writes to the file is ignored. However, the file is automatically extended as necessary for this type of write operation.
- Setting the FILE_WRITE_DATA flag for a file also allows writes beyond the end of the file to occur. The file is automatically extended for this type of write, as well.
- If only the FILE_EXECUTE and SYNCHRONIZE flags are set, the caller cannot directly read or write any data in the file using the returned FileHandle, that is, all operations on the file occur through the system pager in response to instruction and data accesses.