aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew White <pixeltrix@users.noreply.github.com>2016-08-29 17:12:16 +0100
committerGitHub <noreply@github.com>2016-08-29 17:12:16 +0100
commit3fc414a019526e5584867b032a188adf15c71eac (patch)
tree560cc9ef4546ae91f271ffb1bf2175d816b61647
parent2ea66fc6c5728bdd51b164be25c43c8cbce396a5 (diff)
parenta84b50374e0a063646ade80bfcfa81a5c8e887c2 (diff)
downloadrails-3fc414a019526e5584867b032a188adf15c71eac.tar.gz
rails-3fc414a019526e5584867b032a188adf15c71eac.tar.bz2
rails-3fc414a019526e5584867b032a188adf15c71eac.zip
Merge pull request #26318 from alexcameron89/contributing-doc-update
[ci skip] Update branch version in Contributing Guide
-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
```