8000 docs: fix link · rx-angular/rx-angular@b29d0cb · GitHub
[go: up one dir, main page]

Skip to content

Commit b29d0cb

Browse files
committed
docs: fix link
1 parent 91f3e81 commit b29d0cb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

apps/docs/docs/cdk/notifications/notifications.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,17 @@ A demo application is available on [GitHub](https://stackblitz.com/edit/angular-
4545

4646
![rx-angular_cdk_notifications__toNotifiaction_michael_hladky](https://user-images.githubusercontent.com/10064416/131154927-c56e1fbe-c01f-4c8a-9445-869db3f9bd0e.png)
4747

48-
When dealing with asynchronouse code we always have some contextual information given that directly relate to the output of an asynchronouse code.
48+
When dealing with asynchronous code we always have some contextual information given that directly relate to the output of an asynchronous code.
4949

5050
The a good example is a `[Promise](https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Promise)` used in a UI where you can list items and search them.
5151

5252
The following states can apply to this UI:
5353

5454
- Initial loading of the list. (loading spinner)
5555
- Display of the data (The actual value is now given and displayed)
56-
- Error in the asynchronouse process (A error message is displayed)
56+
- Error in the asynchronous process (A error message is displayed)
5757
- Completion of the process (Communicates that the process is completed)
58-
- Subsquent search actions (loading spinner)
58+
- Subsequent search actions (loading spinner)
5959

6060
```typescript
6161
@Component({
@@ -94,13 +94,13 @@ If we organize them visually 4 states, 3 of them contextual are given:
9494
- **error** (communicating error)
9595
- **complete** (communicating complete)
9696

97-
For those states we use the term **reactive context** which includes the state and contextual state of and asynchronouse process.
97+
For those states we use the term **reactive context** which includes the state and contextual state of and asynchronous process.
9898

9999
![rx-angular_cdk_notifications__reactive-context_michael_hladky](https://user-images.githubusercontent.com/10064416/131148610-cc39370a-37d9-4bb2-b8e2-538e68405bac.png)
100100

101-
Whith this concept we can create helpers that support to implement the handling of reactive context in a more elegant way.
101+
With this concept we can create helpers that support to implement the handling of reactive context in a more elegant way.
102102

103-
A good example is the [`rxLet`](../../template/api/let-directive.md) directive:
103+
A good example is the [`rxLet`](../../template/api/rx-let-directive.md) directive:
104104

105105
```typescript
106106
@Component({

0 commit comments

Comments
 (0)
0