1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:02:09 +02:00

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 <sbrl@starbeamrainbowlabs.com>
This commit is contained in:
fejx 2020-05-10 21:22:17 +02:00 committed by Starbeamrainbowlabs
parent cf1b9177b7
commit 2522bce7c2
4 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,7 @@
> Change DOS-style line endings to Unix-style. > Change DOS-style line endings to Unix-style.
> Replaces CRLF with CR. > Replaces CRLF with CR.
- Change line endings of a file: - Change the line endings of a file:
`dos2unix {{filename}}` `dos2unix {{filename}}`

View file

@ -3,7 +3,7 @@
> Change macOS-style line endings to Unix-style. > Change macOS-style line endings to Unix-style.
> Replaces LF with CR. > Replaces LF with CR.
- Change line endings of a file: - Change the line endings of a file:
`mac2unix {{filename}}` `mac2unix {{filename}}`

View file

@ -3,7 +3,7 @@
> Change Unix-style line endings to DOS-style. > Change Unix-style line endings to DOS-style.
> Replaces CR with CRLF. > Replaces CR with CRLF.
- Change line endings of a file: - Change the line endings of a file:
`unix2dos {{filename}}` `unix2dos {{filename}}`

View file

@ -3,7 +3,7 @@
> Change Unix-style line endings to macOS-style. > Change Unix-style line endings to macOS-style.
> Replaces CR with LF. > Replaces CR with LF.
- Change line endings of a file: - Change the line endings of a file:
`unix2mac {{filename}}` `unix2mac {{filename}}`