Merge pull request #8 from NRS-Soft/master

Minor typos and adds a missing link to the table of contents
This commit is contained in:
Artem Zakharchenko 2021-01-17 09:35:35 +01:00 committed by GitHub
commit 076ad5db95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@
- [Avoid contractions](#avoid-contractions) - [Avoid contractions](#avoid-contractions)
- [Avoid context duplication](#avoid-context-duplication) - [Avoid context duplication](#avoid-context-duplication)
- [Reflect expected result](#reflect-expected-result) - [Reflect expected result](#reflect-expected-result)
- Naming functions - [Naming functions](#naming-functions)
- [A/HC/LC pattern](#ahclc-pattern) - [A/HC/LC pattern](#ahclc-pattern)
- [Actions](#actions) - [Actions](#actions)
- [Context](#context) - [Context](#context)
@ -146,7 +146,7 @@ function getFruitsCount() {
### `set` ### `set`
Declaratively sets a variable with value `A` to value `B`. Sets a variable in a declarative way, with value `A` to value `B`.
```js ```js
const fruits = 0 const fruits = 0
@ -206,7 +206,7 @@ removeFilter('price', selectedFilters)
### `delete` ### `delete`
Completely erazes something from the realms of existence. Completely erases something from the realms of existence.
Imagine you are a content editor, and there is that notorious post you wish to get rid of. Once you clicked a shiny "Delete post" button, the CMS performed a `deletePost` action, **not** `removePost`. Imagine you are a content editor, and there is that notorious post you wish to get rid of. Once you clicked a shiny "Delete post" button, the CMS performed a `deletePost` action, **not** `removePost`.