Skip to content

Commit 21c3488

Browse files
committed
docs: language tweaks
1 parent 0cdc40d commit 21c3488

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/guide/configurations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Configurations
22

3-
Vuex ORM Axios plugin comes with a wealth of options to control request behavior. These options can be configured in three common places:
3+
Vuex ORM Axios plugin comes with various options to control request behavior. These options can be configured in three common places:
44

55
- **Globally** - options can defined during installation
66
- **Model** - options can be defined on a per-model basis

docs/guide/setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Setup
22

3-
The Axios plugin can be installed with Vuex ORM using the `VuexORM.use` plugin install method.
3+
Vuex ORM Axios plugin can be installed with Vuex ORM using the `VuexORM.use` plugin install method.
44

55
An instance of axios must be configured during installation for the plugin to work.
66

docs/guide/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Vuex ORM Axios will automatically save this data to the store, and the users ent
9696
}
9797
```
9898

99-
Under the hood, the plugin will persist data to the store by determining which records require inserting and which require updating. To accomplish this, the plugin passes data to Vuex ORM's `insertOrUpdate` model method. Therefore, only valid model attributes will be persisted to the store.
99+
Under the hood, the plugin will persist data to the store by determining which records require inserting and which require updating. To accomplish this, the plugin passes data to the Vuex ORM `insertOrUpdate` model method. Therefore, only valid model attributes will be persisted to the store.
100100

101101
If you do not want to persist response data automatically, you can defer persistence by configuring the request with the `{ save: false }` option.
102102

0 commit comments

Comments
 (0)