aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorDavid Elliott <david@philosophie.is>2016-06-20 09:16:30 -0700
committerDavid Elliott <david@philosophie.is>2016-06-20 09:20:28 -0700
commit006cd081ebce6b61188b625c016f28c84fcb6988 (patch)
tree60f9f46aaa17f57dcc76dc8e3c2460ef2879ad9c /guides
parentce459720ec5ef039d1f825c69bd3d929d5885996 (diff)
downloadrails-006cd081ebce6b61188b625c016f28c84fcb6988.tar.gz
rails-006cd081ebce6b61188b625c016f28c84fcb6988.tar.bz2
rails-006cd081ebce6b61188b625c016f28c84fcb6988.zip
[ci skip] correction in command for generating api documentation
reverts change in previous commit https://github.com/rails/rails/commit/ea4f0e2 docs should prefer to use `rails` over `rake` in the context of an application, but in the context of the Rails source this is not the case
Diffstat (limited to 'guides')
-rw-r--r--guides/source/api_documentation_guidelines.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/api_documentation_guidelines.md b/guides/source/api_documentation_guidelines.md
index 5b34330936..34b9c0d2ca 100644
--- a/guides/source/api_documentation_guidelines.md
+++ b/guides/source/api_documentation_guidelines.md
@@ -20,7 +20,7 @@ The [Rails API documentation](http://api.rubyonrails.org) is generated with
in the rails root directory, run `bundle install` and execute:
```bash
- ./bin/rails rdoc
+ bundle exec rake rdoc
```
Resulting HTML files can be found in the ./doc/rdoc directory.