Skip to content

Commit

Permalink
fix typos using misspell (#1374)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lutzifer authored and waldyrious committed May 12, 2017
1 parent c061669 commit 550ede5
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pages/common/cloc.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}}`
2 changes: 1 addition & 1 deletion pages/common/fzf.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}}`

Expand Down
2 changes: 1 addition & 1 deletion pages/common/phpunit.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand Down
2 changes: 1 addition & 1 deletion pages/common/tr.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}}'`

Expand Down
4 changes: 2 additions & 2 deletions pages/common/uniq.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
2 changes: 1 addition & 1 deletion pages/common/unzip.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)}}`

Expand Down
2 changes: 1 addition & 1 deletion pages/linux/fc-pattern.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}}'`

0 comments on commit 550ede5

Please sign in to comment.