From 1f499c3c14fb57a6da29262f022e73671385f621 Mon Sep 17 00:00:00 2001 From: fejx Date: Sun, 10 May 2020 21:22:17 +0200 Subject: [PATCH] dos2unix, unix2dos, mac2unix, unix2mac: rephrase wording in first example Adding 'the' is more accurate because it's *all* of the line endings that get replaced, not just *some* of them. Apply suggestions from code review Co-authored-by: Starbeamrainbowlabs --- pages/linux/dos2unix.md | 2 +- pages/linux/mac2unix.md | 2 +- pages/linux/unix2dos.md | 2 +- pages/linux/unix2mac.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/linux/dos2unix.md b/pages/linux/dos2unix.md index dea8bf559..a3722cc09 100644 --- a/pages/linux/dos2unix.md +++ b/pages/linux/dos2unix.md @@ -3,7 +3,7 @@ > Change DOS-style line endings to Unix-style. > Replaces CRLF with CR. -- Change line endings of a file: +- Change the line endings of a file: `dos2unix {{filename}}` diff --git a/pages/linux/mac2unix.md b/pages/linux/mac2unix.md index a508c298c..5fe8e3d77 100644 --- a/pages/linux/mac2unix.md +++ b/pages/linux/mac2unix.md @@ -3,7 +3,7 @@ > Change macOS-style line endings to Unix-style. > Replaces LF with CR. -- Change line endings of a file: +- Change the line endings of a file: `mac2unix {{filename}}` diff --git a/pages/linux/unix2dos.md b/pages/linux/unix2dos.md index 726e6bd33..57ebfd955 100644 --- a/pages/linux/unix2dos.md +++ b/pages/linux/unix2dos.md @@ -3,7 +3,7 @@ > Change Unix-style line endings to DOS-style. > Replaces CR with CRLF. -- Change line endings of a file: +- Change the line endings of a file: `unix2dos {{filename}}` diff --git a/pages/linux/unix2mac.md b/pages/linux/unix2mac.md index fe591cd21..84c396ec9 100644 --- a/pages/linux/unix2mac.md +++ b/pages/linux/unix2mac.md @@ -3,7 +3,7 @@ > Change Unix-style line endings to macOS-style. > Replaces CR with LF. -- Change line endings of a file: +- Change the line endings of a file: `unix2mac {{filename}}`