From 04341e50866e039b29a9d2d51c046a67108c5b9f Mon Sep 17 00:00:00 2001 From: Nobuo Kihara Date: Mon, 17 Nov 2014 01:14:40 +0900 Subject: [PATCH 1/2] docs/guide/runtime-routing.md - grammar correction [ci skip] --- docs/guide/runtime-routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/runtime-routing.md b/docs/guide/runtime-routing.md index 861e336805..1bf94973f1 100644 --- a/docs/guide/runtime-routing.md +++ b/docs/guide/runtime-routing.md @@ -16,7 +16,7 @@ a route and the associated query parameters and the [[yii\web\UrlManager::create create a URL from a given route and its associated query parameters. By configuring the `urlManager` component in the application configuration, you can let your application -to recognize arbitrary URL formats without modifying your existing application code. For example, you can +recognize arbitrary URL formats without modifying your existing application code. For example, you can use the following code to create a URL for the `post/view` action: ```php From df785fc27cb311bf185b43eb8956c7ce30bf46a1 Mon Sep 17 00:00:00 2001 From: Nobuo Kihara Date: Wed, 19 Nov 2014 23:53:22 +0900 Subject: [PATCH 2/2] docs/guide/runtime-routing.md - grammar fix [ci skip] --- docs/guide/runtime-routing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/runtime-routing.md b/docs/guide/runtime-routing.md index 1bf94973f1..641a67ffef 100644 --- a/docs/guide/runtime-routing.md +++ b/docs/guide/runtime-routing.md @@ -444,8 +444,8 @@ will parse the URL `http://en.example.com/posts` into the route `post/index` and ### URL Suffixes You may want to add suffixes to the URLs for various purposes. For example, you may add `.html` to the URLs so that they -look like URLs for static HTML pages; you may also add `.json` to the URLs to indicate that the expected content type -of the response to the URLs. You can achieve this goal by configuring the [[yii\web\UrlManager::suffix]] property like +look like URLs for static HTML pages; you may also add `.json` to the URLs to indicate the expected content type +of the response. You can achieve this goal by configuring the [[yii\web\UrlManager::suffix]] property like the following in the application configuration: ```php