aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/contributing_to_ruby_on_rails.md
diff options
context:
space:
mode:
authorGodfrey Chan <godfreykfc@gmail.com>2015-04-20 00:08:20 -0400
committerGodfrey Chan <godfreykfc@gmail.com>2015-04-20 00:08:20 -0400
commit0cfc34ae9a8fa3d283ff1f5902cacfd41e14ea59 (patch)
tree6cdd9a8cc7886e98ef7ac67d1cf04c296a9c44de /guides/source/contributing_to_ruby_on_rails.md
parent60cb61dba69b131dcb468afae570da56f14276c9 (diff)
downloadrails-0cfc34ae9a8fa3d283ff1f5902cacfd41e14ea59.tar.gz
rails-0cfc34ae9a8fa3d283ff1f5902cacfd41e14ea59.tar.bz2
rails-0cfc34ae9a8fa3d283ff1f5902cacfd41e14ea59.zip
Consistency: Rails master -> edge Rails [ci skip]
Diffstat (limited to 'guides/source/contributing_to_ruby_on_rails.md')
-rw-r--r--guides/source/contributing_to_ruby_on_rails.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/contributing_to_ruby_on_rails.md b/guides/source/contributing_to_ruby_on_rails.md
index 9b28ff4ea7..85ba15a594 100644
--- a/guides/source/contributing_to_ruby_on_rails.md
+++ b/guides/source/contributing_to_ruby_on_rails.md
@@ -40,7 +40,7 @@ Having a way to reproduce your issue will be very helpful for others to help con
* Template for Action Pack (controllers, routing) issues: [gem](https://github.com/rails/rails/blob/master/guides/bug_report_templates/action_controller_gem.rb) / [master](https://github.com/rails/rails/blob/master/guides/bug_report_templates/action_controller_master.rb)
* Generic template for other issues: [gem](https://github.com/rails/rails/blob/master/guides/bug_report_templates/generic_gem.rb) / [master](https://github.com/rails/rails/blob/master/guides/bug_report_templates/generic_gem.rb)
-These templates include the boilerplate code to set up a test case against either a released version of Rails (`*_gem.rb`) or Rails master (`*_master.rb`).
+These templates include the boilerplate code to set up a test case against either a released version of Rails (`*_gem.rb`) or edge Rails (`*_master.rb`).
Simply copy the content of the appropriate template into a `.rb` file and make the necessary changes to demonstrate the issue. You can execute it by running `ruby the_file.rb` in your terminal. If all goes well, you should see your test case failing.