aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2014-12-20 00:54:06 +0100
committerXavier Noria <fxn@hashref.com>2014-12-20 00:54:06 +0100
commit461fa6390da5856d952d7fb8aac9e3f0ff712f5b (patch)
tree99acfb1febc448bb3405a9140ec5ae47d3a857e8
parent83bbc2352c73beba655d9c1d58a3244782209bc5 (diff)
parentf57e1a224540b40a552f2f79da181caf969bdbc8 (diff)
downloadrails-461fa6390da5856d952d7fb8aac9e3f0ff712f5b.tar.gz
rails-461fa6390da5856d952d7fb8aac9e3f0ff712f5b.tar.bz2
rails-461fa6390da5856d952d7fb8aac9e3f0ff712f5b.zip
Merge pull request #18104 from andreynering/guides-dsl
Add link for Domain-Specific Language [ci skip]
-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