aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Moss <maclover7@users.noreply.github.com>2016-06-25 21:36:56 -0400
committerGitHub <noreply@github.com>2016-06-25 21:36:56 -0400
commitd66adf12ba0a32528f3b517f8ead7321f53c0cc5 (patch)
tree4c88e516bebb3d1f1d8a63c0b15649a4d427ef1f
parentf4e7167ea613484e5672cf298f2ab775807f5f8f (diff)
parentdf17f7e374eb9cd4052deef23c67fb68997e53b3 (diff)
downloadrails-d66adf12ba0a32528f3b517f8ead7321f53c0cc5.tar.gz
rails-d66adf12ba0a32528f3b517f8ead7321f53c0cc5.tar.bz2
rails-d66adf12ba0a32528f3b517f8ead7321f53c0cc5.zip
Merge pull request #25530 from y-yagi/update_routes_example
remove unecessary comments [ci skip]
-rw-r--r--guides/source/getting_started.md5
1 files changed, 0 insertions, 5 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index 65fdd7ca0d..e0832a32a6 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -299,9 +299,6 @@ Rails.application.routes.draw do
get 'welcome/index'
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
-
- # Serve websocket cable requests in-process
- # mount ActionCable.server => '/cable'
end
```
@@ -318,8 +315,6 @@ Rails.application.routes.draw do
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
- # Serve websocket cable requests in-process
- # mount ActionCable.server => '/cable'
root 'welcome#index'
end
```