diff --git a/ansible.md b/ansible.md index 0d738824a..5a311d1f5 100644 --- a/ansible.md +++ b/ansible.md @@ -91,7 +91,7 @@ category: Ansible vars: local_home: "{{ lookup('env','HOME') }}" -## Refereneces +## References * [Intro](http://www.ansibleworks.com/docs/intro_configuration.html) * [Modules](http://www.ansibleworks.com/docs/modules.html) diff --git a/backbone.md b/backbone.md index f08dac3ff..51e0d98e2 100644 --- a/backbone.md +++ b/backbone.md @@ -103,7 +103,7 @@ var View = Backbone.View.extend({ render: function() { ··· } }) ``` -### Instanciating +### Instantiating ```js view = new View() @@ -141,7 +141,7 @@ var Model = Backbone.Model.extend({ }) ``` -### Instanciating +### Instantiating ```js var obj = new Model({ title: 'Lolita', author: 'Nabokov' }) diff --git a/bash.md b/bash.md index 523658f87..635adf89b 100644 --- a/bash.md +++ b/bash.md @@ -457,8 +457,8 @@ History ### Operations -| `!!:s///` | Replace first occurence of `` to `` in most recent command | -| `!!:gs///` | Replace all occurences of `` to `` in most recent command | +| `!!:s///` | Replace first occurrence of `` to `` in most recent command | +| `!!:gs///` | Replace all occurrences of `` to `` in most recent command | | `!$:t` | Expand only basename from last parameter of most recent command | | `!$:h` | Expand only directory from last parameter of most recent command | diff --git a/css-system-font-stack.md b/css-system-font-stack.md index 63b7b9e2f..7cb8b0d85 100644 --- a/css-system-font-stack.md +++ b/css-system-font-stack.md @@ -26,7 +26,7 @@ This uses whatever system font is available. See: [System shock - Designing Medi | `Roboto` | Android 4.0+ | | `Oxygen` | Linux, KDE | | `Ubuntu` | Linux, Ubuntu | -| `Cantarell` | Linux, Gnome | +| `Cantarell` | Linux, GNOME | | `Fira Sans` | Firefox OS | | `Droid Sans` | Android (until 3.2) | | `Helvetica Neue` | OS X (10.9) | diff --git a/gnupg.md b/gnupg.md index 5c489a89e..e7ea12f84 100644 --- a/gnupg.md +++ b/gnupg.md @@ -228,11 +228,11 @@ Field Quick Reference: | 1 | Record type | | 2 | Validity | | 3 | Key length in bits | -| 4 | Public key algoritm | +| 4 | Public key algorithm | | 5 | Key ID | | 6 | Creation date | | 7 | Expiry date | -| 8 | Certifcate S/N, UID hash, trust signature info | +| 8 | Certificate S/N, UID hash, trust signature info | | 9 | Ownertrust | | 10 | User ID | | 11 | Signature class | diff --git a/go.md b/go.md index d4f5d5654..5750fab0b 100644 --- a/go.md +++ b/go.md @@ -176,7 +176,7 @@ if _, err := getResult(); err != nil { ``` {: data-line="1"} -A condition in an `if` statement can be preceeded with a statement before a `;`. +A condition in an `if` statement can be preceded with a statement before a `;`. See: [If with a short statement](https://tour.golang.org/flowcontrol/6) diff --git a/gremlins.md b/gremlins.md index 5e68e49b7..1ad8b9f9c 100644 --- a/gremlins.md +++ b/gremlins.md @@ -71,7 +71,7 @@ gremlins.createHorde() ``` {: data-line="2,6"} -### Asyncronous +### Asynchronous ```js gremlins.createHorde() diff --git a/html.md b/html.md index 365020fe3..57e6e4208 100644 --- a/html.md +++ b/html.md @@ -100,7 +100,7 @@ Only do this if you're not placing the site in the root! -### HTML Compatiblity inspector +### HTML Compatibility inspector diff --git a/ie_bugs.md b/ie_bugs.md index e66899b85..6253b138f 100644 --- a/ie_bugs.md +++ b/ie_bugs.md @@ -13,7 +13,7 @@ Not for checkboxes, radios, multi-select lists. Use the `click` handler instead. * [(1)](http://www.gtalbot.org/BrowserBugsSection/MSIE7Bugs/LabelForWithImage.html) -### IE8: an element's 'opacity' value isn't propogated to its positioned descendants +### IE8: an element's 'opacity' value isn't propagated to its positioned descendants * [test case](http://jhop.me/tests/bugs/ie8/opacity_positioned.html) diff --git a/parsley.md b/parsley.md index ac8056d59..9a7844d22 100644 --- a/parsley.md +++ b/parsley.md @@ -42,7 +42,7 @@ npm install --save parsleyjs $('#form').parsley(/* options */) ``` -It's preferrable to explictly call `$.fn.parsley()`. +It's preferable to explicitly call `$.fn.parsley()`. ### API diff --git a/postgresql-json.md b/postgresql-json.md index c036aab3d..5d08a8239 100644 --- a/postgresql-json.md +++ b/postgresql-json.md @@ -1,5 +1,5 @@ --- -title: Postgresql JSON +title: PostgreSQL JSON layout: 2017/sheet prism_languages: [sql] updated: 2017-09-22 diff --git a/postgresql.md b/postgresql.md index 978e15f23..3b5699ed3 100644 --- a/postgresql.md +++ b/postgresql.md @@ -1,5 +1,5 @@ --- -title: Postgresql +title: PostgreSQL --- ### Console diff --git a/ractive.md b/ractive.md index 254c0cd6d..61e40a358 100644 --- a/ractive.md +++ b/ractive.md @@ -13,7 +13,7 @@ vim: ft=javascript template: '...', // required // callbacks - init: function() {}, // on instanciate + init: function() {}, // on instantiate complete: function() {}, // on finish animations // objs diff --git a/react.md b/react.md index c33c62f40..edd512d32 100644 --- a/react.md +++ b/react.md @@ -204,7 +204,7 @@ this.state this.props ``` -These methods and properies are available for `Component` instances. +These methods and properties are available for `Component` instances. See: [Component API](http://facebook.github.io/react/docs/component-api.html) @@ -290,7 +290,7 @@ See: [Events](https://reactjs.org/docs/events.html) ## Other features -### Transfering props +### Transferring props ```html diff --git a/rest-api.md b/rest-api.md index da034dcda..d64f02799 100644 --- a/rest-api.md +++ b/rest-api.md @@ -6,7 +6,7 @@ title: RESTful API * `200 OK` - successful get, patch (return a JSON object) * `201 Created` - successful post (return a JSON object) - * `202 Accepted` - sucessful post, delete, path - async + * `202 Accepted` - successful post, delete, path - async * `204 No content` - successful delete * `206 Partial content` - successful get - async diff --git a/rspec-rails.md b/rspec-rails.md index 789036013..e5d1d445f 100644 --- a/rspec-rails.md +++ b/rspec-rails.md @@ -18,7 +18,7 @@ category: Ruby ```rb # spec/models/*.rb -decribe MyModel do +describe MyModel do end ``` diff --git a/sequel.md b/sequel.md index 1c5e4f2b9..fec9c3b46 100644 --- a/sequel.md +++ b/sequel.md @@ -324,7 +324,7 @@ Provided by many_to_many deal = Deal[1] deal.changed_columns - deal.destory # Calls hooks + deal.destroy # Calls hooks deal.delete # No hooks deal.exists? deal.new? diff --git a/spine.md b/spine.md index e5822aeb0..c448610b4 100644 --- a/spine.md +++ b/spine.md @@ -118,7 +118,7 @@ vim: ft=python .on 'create' .on 'update' - .on 'destory' + .on 'destroy' .on 'save' # create / update .on 'change' # create / update / destroy diff --git a/tmux.md b/tmux.md index 568b3d202..e6d584ca3 100644 --- a/tmux.md +++ b/tmux.md @@ -43,7 +43,7 @@ title: tmux ### Detach/attach - C-b d # detatch + C-b d # Detach C-b ( ) # Switch through sessions $ tmux attach diff --git a/vim-easyalign.md b/vim-easyalign.md index e6c36f826..f34a78250 100644 --- a/vim-easyalign.md +++ b/vim-easyalign.md @@ -40,7 +40,7 @@ category: Vim ar " a[lrc] - align " align left/right/center dr " d[lrc] - delimiter_align - " alignment of the delimeter itself + " alignment of the delimiter itself ``` ### Spaces are optional @@ -66,9 +66,9 @@ category: Vim ### `:EasyAlign *|` (markdown tables) ```nohighlight -| `` | right align | -| `1` | on 1st occurence | -| `2` | on 2nd occurence (and so on) | +| `` | right align | +| `1` | on 1st occurrence | +| `2` | on 2nd occurrence (and so on) | ``` Interactive mode @@ -83,7 +83,7 @@ Then press options (if available), then a delimiter. ### Interactive mode options | `⏎` | Set `alignment` | -| `` `4 ⏎` | Set `left_margin` (to the left of the delimeter) | +| `` `4 ⏎` | Set `left_margin` (to the left of the delimiter) | | `` `4 ⏎` | Set `right_margin` | | `↓` | no margin | {:.greycode} diff --git a/vimscript-functions.md b/vimscript-functions.md index 518d7b49d..65bcfabb3 100644 --- a/vimscript-functions.md +++ b/vimscript-functions.md @@ -13,7 +13,7 @@ let colors = { } echo colors["a"] -echo get(colors, "apple") " supress error +echo get(colors, "apple") " suppress error remove(colors, "apple") @@ -48,7 +48,7 @@ let mylist = [1, two, 3, "four"] let first = mylist[0] let last = mylist[-1] -" Supresses errors +" Suppresses errors let second = get(mylist, 1) let second = get(mylist, 1, "NONE") ``` @@ -66,7 +66,7 @@ Functions getline(1) " get line 1 getline(1, 5) " get lines 1-5 search('^$') " next blank line, returns line number - search('^$','n') " but dont move cursor + search('^$','n') " but don't move cursor getcurpos() " [bufnum, lnum, col, off, curswant] getpos('.') " [bufnum, lnum, col, off] diff --git a/vimscript.md b/vimscript.md index ed4bf158c..a112bf83d 100644 --- a/vimscript.md +++ b/vimscript.md @@ -347,7 +347,7 @@ let mylist = [1, two, 3, "four"] let first = mylist[0] let last = mylist[-1] -" Supresses errors +" Suppresses errors let second = get(mylist, 1) let second = get(mylist, 1, "NONE") ``` @@ -406,7 +406,7 @@ let colors = { } echo colors["a"] -echo get(colors, "apple") " supress error +echo get(colors, "apple") " suppress error ``` See `:help dict` @@ -559,7 +559,7 @@ See `:help expand` silent g/Aap/p ``` -Supresses output. See `:help silent` +Suppresses output. See `:help silent` ### Echo