From 550ede5cfb90cb772d1ecf27241b22e5086b024b Mon Sep 17 00:00:00 2001 From: Wolfgang Lutz Date: Fri, 12 May 2017 11:29:18 +0200 Subject: [PATCH] fix typos using misspell (#1374) --- pages/common/cloc.md | 2 +- pages/common/fzf.md | 2 +- pages/common/phpunit.md | 2 +- pages/common/tr.md | 2 +- pages/common/uniq.md | 4 ++-- pages/common/unzip.md | 2 +- pages/linux/fc-pattern.md | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pages/common/cloc.md b/pages/common/cloc.md index f2c1335d9b..5a9283bcda 100644 --- a/pages/common/cloc.md +++ b/pages/common/cloc.md @@ -10,6 +10,6 @@ `cloc --progress=1 {{/path/to/directory}}` -- Compare 2 directory sturctures and count the differences between them: +- Compare 2 directory structures and count the differences between them: `cloc --diff {{/directory/one}} {{/directory/two}}` diff --git a/pages/common/fzf.md b/pages/common/fzf.md index c79c6d14e1..b44f7a02ed 100644 --- a/pages/common/fzf.md +++ b/pages/common/fzf.md @@ -10,7 +10,7 @@ `ps axu | fzf` -- Select mutliple files with `Shift + Tab` and write to a file: +- Select multiple files with `Shift + Tab` and write to a file: `find {{path/to/search_files}} -type f | fzf -m > {{filename}}` diff --git a/pages/common/phpunit.md b/pages/common/phpunit.md index 0f89f34796..f72df979a9 100644 --- a/pages/common/phpunit.md +++ b/pages/common/phpunit.md @@ -2,7 +2,7 @@ > PHPUnit command-line test runner. -- Run tests in the current direcotry. Note: Expects you to have a 'phpunit.xml': +- Run tests in the current directory. Note: Expects you to have a 'phpunit.xml': `phpunit` diff --git a/pages/common/tr.md b/pages/common/tr.md index 798ca52cbe..ae2ff71861 100644 --- a/pages/common/tr.md +++ b/pages/common/tr.md @@ -10,7 +10,7 @@ `tr 'abcd' 'jkmn' < {{filename}}` -- Delete all occurances of the specified set of characters from the input: +- Delete all occurrences of the specified set of characters from the input: `tr -d '{{input_characters}}'` diff --git a/pages/common/uniq.md b/pages/common/uniq.md index a51eff2f92..d39c0b267e 100644 --- a/pages/common/uniq.md +++ b/pages/common/uniq.md @@ -15,10 +15,10 @@ `sort {{file}} | uniq -d` -- Display number of occurences of each line along with that line: +- Display number of occurrences of each line along with that line: `sort {{file}} | uniq -c` -- Display number of occurences of each line, sorted by the most frequent: +- Display number of occurrences of each line, sorted by the most frequent: `sort {{file}} | uniq -c | sort -nr` diff --git a/pages/common/unzip.md b/pages/common/unzip.md index 38e25094fa..8cc057d1d8 100644 --- a/pages/common/unzip.md +++ b/pages/common/unzip.md @@ -2,7 +2,7 @@ > Extract compressed files in a ZIP archive. -- Extract zip file(s) (for multiple files, seperate file paths by spaces): +- Extract zip file(s) (for multiple files, separate file paths by spaces): `unzip {{file(s)}}` diff --git a/pages/linux/fc-pattern.md b/pages/linux/fc-pattern.md index 6be1779901..3ca45e60db 100644 --- a/pages/linux/fc-pattern.md +++ b/pages/linux/fc-pattern.md @@ -2,6 +2,6 @@ > Shows information about a font matching a pattern. -- Display default infomation about a font: +- Display default information about a font: `fc-pattern -d '{{DejaVu Serif}}'`