diff --git a/docs/guide/runtime-routing.md b/docs/guide/runtime-routing.md index 861e336..641a67f 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 @@ -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