Skip to content

Commit ab16444

Browse files
committed
Fixed: some typos in docs/guide/data-resolvers (#5071)
1 parent ac14724 commit ab16444

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/guide/data-resolvers/introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
## What are the data resolvers?
44

55
The `data resolvers` are the way of manage the network/api calls and split them from the rest of application. All of available `data resolvers` you can find in the `core/data-resolver` directory.
6-
If you want to trigger a network calls, you should create a new `data resolver`, and import it in the place where it's needed.
6+
If you want to trigger a network call, you should create a new `data resolver`, and import it in the place where it's needed.
77

88
## How to create a data resolver
9-
First of all, please create a types for it under the namespace `DataResolver`, then just create a new data resolver like this example below:
9+
First of all, please create a type for it under the namespace `DataResolver`, then just create a new data resolver like this example below:
1010

1111

1212
```js

docs/guide/data-resolvers/user-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Registering the new user by given user data (`customer`) and `password`.
1616

1717
#### `updateProfile: (userProfile: UserProfile) => Promise<Task>`
1818

19-
It updates the the current logged user profile (`userProfile`).
19+
It updates the current logged user profile (`userProfile`).
2020

2121
#### `getProfile: () => Promise<Task>`
2222

0 commit comments

Comments
 (0)