aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorAlex Kitchens <alexcameron98@gmail.com>2016-08-29 11:00:43 -0500
committerAlex Kitchens <alexcameron98@gmail.com>2016-08-29 11:00:43 -0500
commita84b50374e0a063646ade80bfcfa81a5c8e887c2 (patch)
tree560cc9ef4546ae91f271ffb1bf2175d816b61647 /guides
parent2ea66fc6c5728bdd51b164be25c43c8cbce396a5 (diff)
downloadrails-a84b50374e0a063646ade80bfcfa81a5c8e887c2.tar.gz
rails-a84b50374e0a063646ade80bfcfa81a5c8e887c2.tar.bz2
rails-a84b50374e0a063646ade80bfcfa81a5c8e887c2.zip
[ci skip] Update branch version in Contributing Guide
Since only Rails 4 and above are currently supported, this updates a 3-2-stable example to be consistent with the support standard.
Diffstat (limited to 'guides')
-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 ba8d085f79..332d8fc852 100644
--- a/guides/source/contributing_to_ruby_on_rails.md
+++ b/guides/source/contributing_to_ruby_on_rails.md
@@ -677,7 +677,7 @@ $ git format-patch master --stdout > ~/my_changes.patch
Switch over to the target branch and apply your changes:
```bash
-$ git checkout -b my_backport_branch 3-2-stable
+$ git checkout -b my_backport_branch 4-2-stable
$ git apply ~/my_changes.patch
```