initial commits

master
Charles Iliya Krempeaux 2023-11-27 11:33:48 -08:00
parent 2c6b49c325
commit 6463d8503e
1 changed files with 5 additions and 5 deletions

View File

@ -4,11 +4,11 @@ Package **eol** implements tools for working with end-of-line, for the Go progra
The end-of-line sequences it supports is: The end-of-line sequences it supports is:
* "\n" // line-feed * `"\n" // line-feed (LF)`
* "\r" // carriage-return * `"\r" // carriage-return (CR)`
* "\r\n" // carriage-return, line-feed * `"\r\n" // carriage-return (CR), line-feed (LF)`
* "\u0085" // next-line * `"\u0085" // next-line (NEL)`
* "\u2028" // line-separator * `"\u2028" // line-separator (LS)`
## Documention ## Documention