Merge pull request #568 from EdwardBetts/spelling

Correct spelling mistakes.
This commit is contained in:
Rico Sta. Cruz 2018-07-02 20:48:15 +08:00 committed by GitHub
commit 5beaf31fc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 14 additions and 14 deletions

View File

@ -62,7 +62,7 @@ See: [Symbols view](https://atom.io/packages/symbols-view)
### Editing ### Editing
| Shortcut | Decription | Shortcut | Description
| --- | --- | --- | ---
| `⌘d` | Select word | `⌘d` | Select word
| `⌘l` | Select line | `⌘l` | Select line

View File

@ -76,7 +76,7 @@ The following classes modify the **font-size**
| `.is-size-6` | 1rem | | `.is-size-6` | 1rem |
| `.is-size-7` | 0.75rem | | `.is-size-7` | 0.75rem |
The following classes **allign** the text The following classes **align** the text
| Class | Alignment | | Class | Alignment |
| --- | --- | | --- | --- |

View File

@ -94,7 +94,7 @@ divshot env:remove <env> KEY
divshot env:pull <env> divshot env:pull <env>
``` ```
### App manangement ### App management
``` ```
divshot create <appname> divshot create <appname>

View File

@ -452,7 +452,7 @@ _| _| _|_|_| _| _| _| _|_|_| _|_|_| _| _|_|_| _|
``` ```
{: .-figlet} {: .-figlet}
### caligraphy ### calligraphy
``` ```
***** ** * ***** ** *

6
osx.md
View File

@ -50,8 +50,8 @@ layout: 2017/sheet
- `networksetup` - Configure network (ip, dns, proxy, etc) - `networksetup` - Configure network (ip, dns, proxy, etc)
- `tmutils` - Configure Time Machine (enable/disable, exclude path, delete snapshots, etc) - `tmutils` - Configure Time Machine (enable/disable, exclude path, delete snapshots, etc)
- `mdutils` - Manage Spotlight (enable/disable, exclude, etc) - `mdutils` - Manage Spotlight (enable/disable, exclude, etc)
- `diskutil` - Controll disk (format, eject, unmount, etc) - `diskutil` - Control disk (format, eject, unmount, etc)
- `launchctl` - Controll running "agents" - `launchctl` - Control running "agents"
### Useful utils ### Useful utils
@ -65,4 +65,4 @@ layout: 2017/sheet
- `/usr/libexec/airportd` - `/usr/libexec/airportd`
- `scutil` - `scutil`
__INFO: `brew` ([link](https://brew.sh)) is highly recomended utility__ __INFO: `brew` ([link](https://brew.sh)) is highly recommended utility__

View File

@ -23,7 +23,7 @@ $ pass insert [-m] twitter.com/rsc
$ pass generate [-n] twitter.com/rsc length $ pass generate [-n] twitter.com/rsc length
``` ```
### Retreive ### Retrieve
``` bash ``` bash
$ pass ls twitter.com/ $ pass ls twitter.com/

2
pm2.md
View File

@ -26,7 +26,7 @@ updated: 2018-03-15
| `pm2 jlist` | Print process list in raw JSON | | `pm2 jlist` | Print process list in raw JSON |
| `pm2 prettylist` | Print process list in beautified JSON | | `pm2 prettylist` | Print process list in beautified JSON |
| --- | --- | | --- | --- |
| `pm2 describe 0` | Display all informations about a specific process | | `pm2 describe 0` | Display all information about a specific process |
| --- | --- | | --- | --- |
| `pm2 monit` | Monitor all processes | | `pm2 monit` | Monitor all processes |

View File

@ -68,7 +68,7 @@ category: Rails
# Before/after filters # Before/after filters
around_filter :wrap_in_transaction around_filter :wrap_in_transaction
def wrap_in_transaction(&blk) def wrap_in_transaction(&blk)
ActiveRecord::Base.transation { yield } ActiveRecord::Base.transaction { yield }
end end
### HTTP basic authentication ### HTTP basic authentication

View File

@ -505,7 +505,7 @@ Article.joins(:category, :comments)
``` ```
```ruby ```ruby
# Nested assocations # Nested associations
Article.joins(comments: :guest) Article.joins(comments: :guest)
``` ```

View File

@ -40,7 +40,7 @@ npm install -D rollup
You may need to use `./node_modules/.bin/rollup` as a command if you did not install rollup globally. You may need to use `./node_modules/.bin/rollup` as a command if you did not install rollup globally.
### Mutiple outputs ### Multiple outputs
#### rollup.config.js #### rollup.config.js
@ -106,7 +106,7 @@ import resolve from 'rollup-plugin-node-resolve'
export default { export default {
input: 'src/main.js', input: 'src/main.js',
ouptut: { output: {
file: 'bundle.js', file: 'bundle.js',
format: 'cjs' format: 'cjs'
}, },

2
vim.md
View File

@ -134,7 +134,7 @@ Operators
### Usage ### Usage
{: .-prime} {: .-prime}
Operators let you operate in a range of text (defined by *motion*). These are preformed in normal mode. Operators let you operate in a range of text (defined by *motion*). These are performed in normal mode.
{: .-setup} {: .-setup}
| `d` | `w` | | `d` | `w` |