SL.io.50: missing backticks (#1994)

This commit is contained in:
Pluto Yang 2022-11-17 23:51:17 +08:00 committed by GitHub
parent 016742b1c0
commit cf3eacad1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20359,7 +20359,7 @@ For writing to a file, there is rarely a need to `flush`.
For string streams (specifically `ostringstream`), the insertion of an `endl` is entirely equivalent
to the insertion of a `'\n'` character, but also in this case, `endl` might be significantly slower.
`endl` does *not* take care of producing a platform specific end-of-line sequence (like "\r\n" on
`endl` does *not* take care of producing a platform specific end-of-line sequence (like `"\r\n"` on
Windows). So for a string stream, `s << endl` just inserts a *single* character, `'\n'`.
##### Note