Add missing spaces that prevented the command from working

Change-Id: I341e4503ed013d441c5f56cefb33ab2607ab29c4
diff --git a/src/source/initializing.md b/src/source/initializing.md
index af33f1f..844e4b0 100644
--- a/src/source/initializing.md
+++ b/src/source/initializing.md
@@ -116,7 +116,7 @@
 This will create a .dmg file which, once mounted, acts as a drive with the required formatting for Android development. For a disk image named "android.dmg" stored in your home directory, you can add the following to your `~/.bash_profile` to mount the image when you execute "mountAndroid": 
 
     # mount the android file image
-    function mountAndroid{ hdiutil attach ~/android.dmg-mountpoint /Volumes/android; }
+    function mountAndroid { hdiutil attach ~/android.dmg -mountpoint /Volumes/android; }
 
 Once mounted, you'll do all your work in the "android" volume. You can eject it (unmount it) just like you would with an external drive.