aboutsummaryrefslogtreecommitdiff
path: root/en/source/initializing.html
diff options
context:
space:
mode:
Diffstat (limited to 'en/source/initializing.html')
-rw-r--r--en/source/initializing.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/en/source/initializing.html b/en/source/initializing.html
index 611d0e4c..662862be 100644
--- a/en/source/initializing.html
+++ b/en/source/initializing.html
@@ -270,7 +270,7 @@ To mount the image when you execute <code>mountAndroid</code>:
<pre class="devsite-click-to-copy">
# mount the android file image
-function mountAndroid() { hdiutil attach ~/android.dmg -mountpoint /Volumes/android; }
+mountAndroid() { hdiutil attach ~/android.dmg -mountpoint /Volumes/android; }
</pre>
<p class="note"><strong>Note:</strong> If your system created a
@@ -282,7 +282,7 @@ function mountAndroid() { hdiutil attach ~/android.dmg -mountpoint /Volumes/andr
<p>To unmount it when you execute <code>umountAndroid</code>:</p>
<pre class="devsite-click-to-copy">
# unmount the android file image
-function umountAndroid() { hdiutil detach /Volumes/android; }
+umountAndroid() { hdiutil detach /Volumes/android; }
</pre>
</li>
</ul>