Skip to content

Commit e14ed79

Browse files
committed
Correct spelling mistakes.
1 parent 972ef75 commit e14ed79

11 files changed

+14
-14
lines changed

Diff for: atom.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ See: [Symbols view](https://atom.io/packages/symbols-view)
6262

6363
### Editing
6464

65-
| Shortcut | Decription
65+
| Shortcut | Description
6666
| --- | ---
6767
| `⌘d` | Select word
6868
| `⌘l` | Select line

Diff for: bulma.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ The following classes modify the **font-size**
7676
| `.is-size-6` | 1rem |
7777
| `.is-size-7` | 0.75rem |
7878

79-
The following classes **allign** the text
79+
The following classes **align** the text
8080

8181
| Class | Alignment |
8282
| --- | --- |

Diff for: divshot.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ divshot env:remove <env> KEY
9494
divshot env:pull <env>
9595
```
9696

97-
### App manangement
97+
### App management
9898

9999
```
100100
divshot create <appname>

Diff for: figlet.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ _| _| _|_|_| _| _| _| _|_|_| _|_|_| _| _|_|_| _|
452452
```
453453
{: .-figlet}
454454

455-
### caligraphy
455+
### calligraphy
456456

457457
```
458458
***** ** *

Diff for: osx.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ layout: 2017/sheet
5050
- `networksetup` - Configure network (ip, dns, proxy, etc)
5151
- `tmutils` - Configure Time Machine (enable/disable, exclude path, delete snapshots, etc)
5252
- `mdutils` - Manage Spotlight (enable/disable, exclude, etc)
53-
- `diskutil` - Controll disk (format, eject, unmount, etc)
54-
- `launchctl` - Controll running "agents"
53+
- `diskutil` - Control disk (format, eject, unmount, etc)
54+
- `launchctl` - Control running "agents"
5555

5656
### Useful utils
5757

@@ -65,4 +65,4 @@ layout: 2017/sheet
6565
- `/usr/libexec/airportd`
6666
- `scutil`
6767

68-
__INFO: `brew` ([link](https://brew.sh)) is highly recomended utility__
68+
__INFO: `brew` ([link](https://brew.sh)) is highly recommended utility__

Diff for: pass.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ $ pass insert [-m] twitter.com/rsc
2323
$ pass generate [-n] twitter.com/rsc length
2424
```
2525

26-
### Retreive
26+
### Retrieve
2727

2828
``` bash
2929
$ pass ls twitter.com/

Diff for: pm2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ updated: 2018-03-15
2626
| `pm2 jlist` | Print process list in raw JSON |
2727
| `pm2 prettylist` | Print process list in beautified JSON |
2828
| --- | --- |
29-
| `pm2 describe 0` | Display all informations about a specific process |
29+
| `pm2 describe 0` | Display all information about a specific process |
3030
| --- | --- |
3131
| `pm2 monit` | Monitor all processes |
3232

Diff for: rails-controllers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ category: Rails
6868
# Before/after filters
6969
around_filter :wrap_in_transaction
7070
def wrap_in_transaction(&blk)
71-
ActiveRecord::Base.transation { yield }
71+
ActiveRecord::Base.transaction { yield }
7272
end
7373

7474
### HTTP basic authentication

Diff for: rails-models.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ Article.joins(:category, :comments)
505505
```
506506

507507
```ruby
508-
# Nested assocations
508+
# Nested associations
509509
Article.joins(comments: :guest)
510510
```
511511

Diff for: rollup.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ npm install -D rollup
4040

4141
You may need to use `./node_modules/.bin/rollup` as a command if you did not install rollup globally.
4242

43-
### Mutiple outputs
43+
### Multiple outputs
4444

4545
#### rollup.config.js
4646

@@ -106,7 +106,7 @@ import resolve from 'rollup-plugin-node-resolve'
106106

107107
export default {
108108
input: 'src/main.js',
109-
ouptut: {
109+
output: {
110110
file: 'bundle.js',
111111
format: 'cjs'
112112
},

Diff for: vim.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Operators
134134
### Usage
135135
{: .-prime}
136136

137-
Operators let you operate in a range of text (defined by *motion*). These are preformed in normal mode.
137+
Operators let you operate in a range of text (defined by *motion*). These are performed in normal mode.
138138
{: .-setup}
139139

140140
| `d` | `w` |

0 commit comments

Comments
 (0)