Skip to content

Commit 0ed3348

Browse files
committed
Fixed typos
1 parent dafca1c commit 0ed3348

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Next you can run the `lng build` and `lng serve` commands to build the blueprint
3030

3131
During development you might prefer using the `lng dev` command, which builds and launches your App, and then keeps watching for changes to automatically rebuild.
3232

33-
Whenever you want to review this documentation, you can run `lng docs` in the root of a project. This will open up the documention for the Lightning-SDK version used in that project.
33+
Whenever you want to review this documentation, you can run `lng docs` in the root of a project. This will open up the documentation for the Lightning-SDK version used in that project.
3434

3535
## Fonts
3636

docs/plugins/accessibility.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ When passing `false` the entire colorshift filter is disabled.
4545

4646
`config` is an object where the _brightness_, _contrast_ and _gamma_ of each color filter can be tweaked. The values are expected to be between `0` and `100`, and default to `50`.
4747

48-
It's not required to pass in the entire object. Keys that are ommitted are automatically assumed to have the default value (of `50`).
48+
It's not required to pass in the entire object. Keys that are omitted are automatically assumed to have the default value (of `50`).
4949

5050
The `normal` type color filter should be used for cases where you only want to adjust the brightness, contrast or gamma values, without applying any specific color blindness filter.
5151

5252

5353
### Advanced use
5454

55-
The typical use of the colorshift filter is to apply it over the entire app (using `this.appliction.colorshift()`). But there may also be cases where you want to apply it only to a single element (for demo purposes or during in-app configuration of the color settings, for example).
55+
The typical use of the colorshift filter is to apply it over the entire app (using `this.application.colorshift()`). But there may also be cases where you want to apply it only to a single element (for demo purposes or during in-app configuration of the color settings, for example).
5656

5757
In this case you should import the `Accessibility` plugin into your component.
5858

docs/plugins/registry.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Registry.clearInterval(intervalId)
8686

8787
### clearIntervals
8888

89-
Cancesl *all* running intervals and prevents them from being executed.
89+
Cancels *all* running intervals and prevents them from being executed.
9090

9191
```js
9292
Registry.clearIntervals()

docs/plugins/router/configuration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,16 +150,16 @@ If you want to pass parameters, the hook must return an *object*:
150150
151151
## afterEachRoute
152152

153-
Is a global hook that will be called after every succesfull `navigate()` request. The parameter is the resolved
153+
Is a global hook that will be called after every successful `navigate()` request. The parameter is the resolved
154154
request object.
155155

156156
```js
157-
{
157+
{
158158
...
159159
routes:[...],
160160
afterEachRoute: (request)=>{
161161
updateAnalytics("loaded", request.hash)
162-
}
162+
}
163163
}
164164
```
165165

0 commit comments

Comments
 (0)