Skip to content

Commit e4ba643

Browse files
authored
Merge pull request #4086 from bjrxyz/bjrxyz-fopen_s-uppercase-letter
fix uppercase letter
2 parents 2ee4036 + 0d4fe96 commit e4ba643

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/c-runtime-library/reference/fopen-s-wfopen-s.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ For more information about using text and binary modes in Unicode and multibyte
130130
|--|--|
131131
| **`c`** | Enable the commit flag for the associated *`filename`* so that the contents of the file buffer are written directly to disk if either **`fflush`** or **`_flushall`** is called. |
132132
| **`n`** | Reset the commit flag for the associated *`filename`* to "no-commit." This flag is the default. It also overrides the global commit flag if you link your program with *`COMMODE.OBJ`*. The global commit flag default is "no-commit" unless you explicitly link your program with *`COMMODE.OBJ`* (see [Link Options](../../c-runtime-library/link-options.md)). |
133-
| **`n`** | Specifies that the file isn't inherited by child processes. |
133+
| **`N`** | Specifies that the file isn't inherited by child processes. |
134134
| **`S`** | Specifies that caching is optimized for, but not restricted to, sequential access from disk. |
135135
| **`R`** | Specifies that caching is optimized for, but not restricted to, random access from disk. |
136136
| **`t`** | Specifies a file as temporary. If possible, it isn't flushed to disk. |

0 commit comments

Comments
 (0)