Fix testcase for attribute ordering.
[oota-llvm.git] / docs / GettingStarted.rst
index 7ea5473c2865e1a01a6d4d64dc5e421fa56033e9..048d4a024843a256bae40c9e12e61c20dd15b16a 100644 (file)
@@ -655,10 +655,10 @@ consider placing the following git script in your path under the name
   fi
 
   git fetch
-  old_branch=$(git rev-parse --abbrev-ref HEAD)
+  OLD_BRANCH=$(git rev-parse --abbrev-ref HEAD)
   git checkout master 2> /dev/null
   git svn rebase -l
-  git checkout $old_breanch 2> /dev/null
+  git checkout $OLD_BRANCH 2> /dev/null
 
   if [ ! -z $STASH ]; then
       git stash pop >/dev/null