aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorAndrey Nering <andrey.nering@gmail.com>2014-12-19 21:16:58 -0200
committerAndrey Nering <andrey.nering@gmail.com>2014-12-19 21:16:58 -0200
commitf57e1a224540b40a552f2f79da181caf969bdbc8 (patch)
tree2f29869d77eb721926c38079f64b5a67402e5cb8 /guides/source
parent2d04bdd86fb4a9c69e1ca1ffe92188a9ca4f88c8 (diff)
downloadrails-f57e1a224540b40a552f2f79da181caf969bdbc8.tar.gz
rails-f57e1a224540b40a552f2f79da181caf969bdbc8.tar.bz2
rails-f57e1a224540b40a552f2f79da181caf969bdbc8.zip
Add link for Domain-Specific Language [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/getting_started.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index 78316c4ca1..e68e07a519 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -300,8 +300,9 @@ Rails.application.routes.draw do
# ...
```
-This is your application's _routing file_ which holds entries in a special DSL
-(domain-specific language) that tells Rails how to connect incoming requests to
+This is your application's _routing file_ which holds entries in a special
+[DSL (domain-specific language)](http://en.wikipedia.org/wiki/Domain-specific_language)
+that tells Rails how to connect incoming requests to
controllers and actions. This file contains many sample routes on commented
lines, and one of them actually shows you how to connect the root of your site
to a specific controller and action. Find the line beginning with `root` and