Edited wiki page ReleaseProcess through web user interface.
diff --git a/ReleaseProcess.wiki b/ReleaseProcess.wiki
index fc5ba0c..9c7e9d9 100644
--- a/ReleaseProcess.wiki
+++ b/ReleaseProcess.wiki
@@ -8,8 +8,10 @@
 
 * Note: Ensure you're using appropriate versions of JDK.
 
+
 <wiki:toc max_depth="3" />
 
+
 === Tag version ===
 {{{
 VERSION=0.90
@@ -20,6 +22,26 @@
 git push --tags
 }}}
 
+=== Create release branch ===
+{{{
+BRANCH=v4.0.x
+
+# Make sure local code is up-to-date
+git checkout master
+git pull
+
+# Create branch
+git checkout -b $BRANCH
+# Push branch for others to see
+git push -u origin $BRANCH
+
+#### In other local clones (optional) ####
+# Get new branch
+git fetch
+# Create a local branch that pulls/pushes to origin/$BRANCH
+git branch $BRANCH origin/$BRANCH
+}}}
+
 === Build RC of library ===
 {{{
 cd ~
@@ -52,27 +74,6 @@
 # Update main page to point to new release.
 }}}
 
-
-=== Create release branch of library ===
-{{{
-BRANCH=v4.0.x
-
-# Make sure local code is up-to-date
-git checkout master
-git pull
-
-# Create branch
-git checkout -b $BRANCH
-# Push branch for others to see
-git push -u origin $BRANCH
-
-#### In other local clones (optional) ####
-# Get new branch
-git fetch
-# Create a local branch that pulls/pushes to origin/$BRANCH
-git branch $BRANCH origin/$BRANCH
-}}}
-
 === Build RC of adaptor ===
 {{{
 VERSION=0.90