Clean up the basic instructions for getting started with clang to always
return to the same directory.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161823 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/www/get_started.html b/www/get_started.html
index 8e339b2..2acd84b 100644
--- a/www/get_started.html
+++ b/www/get_started.html
@@ -53,21 +53,21 @@
   </li>
   <li>Checkout Clang:
   <ul>
-    <li><tt>cd llvm/tools</tt>
+    <li><tt>cd llvm/tools</tt></li>
     <li><tt>svn co http://llvm.org/svn/llvm-project/cfe/trunk clang</tt></li>
+    <li><tt>cd ../..</tt></li>
   </ul>
   </li>
   <li>Checkout Compiler-RT:
   <ul>
-    <li><tt>cd ../..</tt>  (back to where you started)</li>
-    <li><tt>cd llvm/projects</tt>
+    <li><tt>cd llvm/projects</tt></li>
     <li><tt>svn co http://llvm.org/svn/llvm-project/compiler-rt/trunk
         compiler-rt</tt></li>
+    <li><tt>cd ../..</tt></li>
   </ul>
   </li>
   <li>Build LLVM and Clang:
   <ul>
-    <li><tt>cd ../..</tt>  (back to where you started)</li>
     <li><tt>mkdir build</tt> (for building without polluting the source dir)
     </li>
     <li><tt>cd build</tt></li>