From 6463d8503e5f6dc28fdc8f2c3aa92d1191f533ef Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Mon, 27 Nov 2023 11:33:48 -0800 Subject: [PATCH] initial commits --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 427f58c..7fb42fc 100644 --- a/README.md +++ b/README.md @@ -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: -* "\n" // line-feed -* "\r" // carriage-return -* "\r\n" // carriage-return, line-feed -* "\u0085" // next-line -* "\u2028" // line-separator +* `"\n" // line-feed (LF)` +* `"\r" // carriage-return (CR)` +* `"\r\n" // carriage-return (CR), line-feed (LF)` +* `"\u0085" // next-line (NEL)` +* `"\u2028" // line-separator (LS)` ## Documention