Fix a typo in the docs.
diff --git a/README.markdown b/README.markdown
index c688286..2f9c833 100644
--- a/README.markdown
+++ b/README.markdown
@@ -12,10 +12,10 @@
 
 Then add two lines to your bash profile:
 
-    . $NVM_DIR/nvm.sh
+    . $HOME/.nvm/nvm.sh
     nvm use
 
-The first line loads the nvm function into your bash shell so that it's available as a command.  The second line sets your default node version to the latest released version.
+The first line loads the `nvm` function into your bash shell so that it's available as a command.  The second line sets your default node version to the latest released version.
 
 ## Usage
 
@@ -41,4 +41,6 @@
 
 If you want to see what versions you have installed issue:
 
-   nvm list
\ No newline at end of file
+   nvm list
+
+If you want to install nvm to somewhere other than `$HOME/.nvm`, then set the `$NVM_DIR` environment variable before sourcing the nvm.sh file.
\ No newline at end of file