Skip to content

Commit 2c7eca8

Browse files
TylerMSFTTylerMSFT
authored andcommitted
remove trailing slash
1 parent ee6f71a commit 2c7eca8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/c-runtime-library/text-and-binary-streams.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ Positioning within a text stream is limited. You can obtain the current file-pos
1414

1515
For maximum portability, the program shouldn't write:
1616

17-
- Empty files.\
18-
- Space characters at the end of a line.\
19-
- Partial lines (by omitting the `NL` at the end of a file).\
20-
- characters other than the printable characters, NL, and `HT` (horizontal tab).\
17+
- Empty files.
18+
- Space characters at the end of a line.
19+
- Partial lines (by omitting the `NL` at the end of a file).
20+
- characters other than the printable characters, NL, and `HT` (horizontal tab).
2121

2222
If you follow these rules, the sequence of characters you read from a text stream (either as byte or multibyte characters) will match the sequence of characters you wrote to the text stream when you created the file. Otherwise, the library functions can remove a file you create if the file is empty when you close it. Or they can alter or delete characters you write to the file.
2323

0 commit comments

Comments
 (0)