From 6241d1be0ba339d74b80e8f7b700bd04a6bb24af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joel=20Ekstr=C3=B6m=20Svensson?= Date: Mon, 15 Feb 2016 15:21:29 +0100 Subject: [PATCH] Grammatical fix --- docs/config.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/config.md b/docs/config.md index 364dc28d..ad6336b0 100644 --- a/docs/config.md +++ b/docs/config.md @@ -24,14 +24,14 @@ new Vue({ ## Legacy web servers -If you're web server can't handle requests encoded as `application/json`, you can enable the `emulateJSON` option. This will send the request as `application/x-www-form-urlencoded` MIME type, as if from an normal HTML form. +If your web server can't handle requests encoded as `application/json`, you can enable the `emulateJSON` option. This will send the request as `application/x-www-form-urlencoded` MIME type, as if from an normal HTML form. ```js Vue.http.options.emulateJSON = true; ``` -If you're web server can't handle REST/HTTP requests like `PUT`, `PATCH` and `DELETE`, you can enable the `emulateHTTP` option. This will set the `X-HTTP-Method-Override` header with the actual HTTP method and use a normal `POST` request. +If your web server can't handle REST/HTTP requests like `PUT`, `PATCH` and `DELETE`, you can enable the `emulateHTTP` option. This will set the `X-HTTP-Method-Override` header with the actual HTTP method and use a normal `POST` request. ```js Vue.http.options.emulateHTTP = true; -``` \ No newline at end of file +```