diff options
author | hughkelsey <hugh@45robots.com> | 2013-04-23 12:29:11 -0700 |
---|---|---|
committer | hughkelsey <hugh@45robots.com> | 2013-04-23 12:29:11 -0700 |
commit | 3c530dbc77ac5e92591fb1a29b6edd84ae04b8c4 (patch) | |
tree | 54b9106715b444aa989a348e2d61d6bbf3de8d73 | |
parent | bdce0c0bb10da18de955a9af5cb2bcadbc255f7b (diff) | |
download | rails-3c530dbc77ac5e92591fb1a29b6edd84ae04b8c4.tar.gz rails-3c530dbc77ac5e92591fb1a29b6edd84ae04b8c4.tar.bz2 rails-3c530dbc77ac5e92591fb1a29b6edd84ae04b8c4.zip |
Added missing ')' on routing_filter link
-rw-r--r-- | guides/source/i18n.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/i18n.md b/guides/source/i18n.md index d187d3a03a..3c4c1e2cb3 100644 --- a/guides/source/i18n.md +++ b/guides/source/i18n.md @@ -258,7 +258,7 @@ match '/:locale' => 'dashboard#index' Do take special care about the **order of your routes**, so this route declaration does not "eat" other ones. (You may want to add it directly before the `root :to` declaration.) -NOTE: Have a look at two plugins which simplify work with routes in this way: Sven Fuchs's [routing_filter](https://github.com/svenfuchs/routing-filter/tree/master and Raul Murciano's [translate_routes](https://github.com/raul/translate_routes/tree/master). +NOTE: Have a look at two plugins which simplify work with routes in this way: Sven Fuchs's [routing_filter](https://github.com/svenfuchs/routing-filter/tree/master) and Raul Murciano's [translate_routes](https://github.com/raul/translate_routes/tree/master). ### Setting the Locale from the Client Supplied Information |