Skip to content

Commit 537ce0a

Browse files
committed
Fixed: some typos in the documentation
1 parent d6f7afd commit 537ce0a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/guide/data/data-loader.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Starting with Vue Storefront 1.8, there is a new, experimental API for extending
44

55
The server-side rendering feature of Vue Storefront has been designed according to general [Vue.js SSR principles](https://vuejs.org/v2/guide/ssr.html). Each root-level page (which is assigned to a route) consists of a special `asyncData` method which is executed before any component is created, just to fill the Vuex state with all the necessary data.
66

7-
The pre-fetched Vuex state is then provided within thew `window.__INITIAL_STATE__` object to the client to hydrate the client side data.
7+
The pre-fetched Vuex state is then provided within the `window.__INITIAL_STATE__` object to the client to hydrate the client side data.
88

99
Because `asyncData` methods are centralized (one per route), it was not possible to inject any data pre-fetching method from within any module / custom code either theme added to Vue Storefront. If you've created your own version of `Product.vue` or `Category.vue` page in the theme, you could have changed `asyncData` but that's all.
1010

docs/guide/data/static-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
In Vue Storefront, we can use CMS Static Blocks and CMS Static Pages from Magento 2.
44

5-
From version 1.6, thanks to @yuriboyko we have a better solution for static data—it's added to the Elasticsearch database and is using qraphQL query, displayed on the storefront.
5+
From version 1.6, thanks to @yuriboyko we have a better solution for static data—it's added to the Elasticsearch database and is using graphQL query, displayed on the storefront.
66

77
### How it works?
88

docs/guide/integrations/payment-gateway.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ where the payload equals to JSON object with additional order information. This
9696
9797
### The order workflow - server side
9898
99-
To get it right, first we must understand how Vue Storefront processes orders. Vue Storefront sends orders to the server asynchronously because of the offline orders support (orders can be sent immediately after they’replaced, minutes after or even hours).
99+
To get it right, first we must understand how Vue Storefront processes orders. Vue Storefront sends orders to the server asynchronously because of the offline orders support (orders can be sent immediately after they’re placed, minutes after or even hours).
100100
101101
The order is being sent to the `vue-storefront-api/api/order/create` endpoint. This API endpoint pushes the order to the queue from where it's being transferred to the eCommerce backend by a cron-run process called `order_2_magento2.js` (o2m). You will find the source code of `o2m` in the `vue-storefront-api/worker` folder.
102102

docs/guide/integrations/paypal-payments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export default {
5959
},
6060
```
6161
62-
And to you template add the paypal button before `button-full`:
62+
And to your template add the paypal button before `button-full`:
6363
6464
```html
6565
<paypal-button v-if="payment.paymentMethod === 'paypal_express'"/>

0 commit comments

Comments
 (0)