From c4eef56eed42029a0e0289e0a58e101ffde5138e Mon Sep 17 00:00:00 2001 From: Fixator10 Date: Thu, 24 Mar 2022 12:53:25 +0400 Subject: [PATCH] fix "CRFL" --- _docs/guides/hooks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_docs/guides/hooks.md b/_docs/guides/hooks.md index d36072f..d1661b9 100644 --- a/_docs/guides/hooks.md +++ b/_docs/guides/hooks.md @@ -333,7 +333,7 @@ Still in common use: - **LF** (line feed `'\n'`) Moves the printing position one line down (sometimes also to the left). Used as end-of-line marker (EOL) in Unix and derived operating systems. - **CR** (carriage return `'\r'`) -Moves the printing position to the start of the line, allowing overprinting. Used in combination with line feed CRFL as end-of-line marker (EOL) in Windows and several protocols like HTTP, FTP and SMTP. +Moves the printing position to the start of the line, allowing overprinting. Used in combination with line feed CRLF as end-of-line marker (EOL) in Windows and several protocols like HTTP, FTP and SMTP. - **HT** (horizontal tab `'\t'`) Moves the printing position right to the next tab stop. Understood by most editors. - **NUL** (null `'\0'`)