Fix invalid syntax (missing + in multiline string)
diff --git a/bin/templates/cordova/lib/emulator.js b/bin/templates/cordova/lib/emulator.js
index 4c3d451..0b9747d 100644
--- a/bin/templates/cordova/lib/emulator.js
+++ b/bin/templates/cordova/lib/emulator.js
@@ -166,7 +166,7 @@
                     var androidCmd = check_reqs.getAbsoluteAndroidCmd();
                     return Q.reject('ERROR : No emulator images (avds) found.\n' +
                         '1. Download desired System Image by running: ' + androidCmd + ' sdk\n' +
-                        '2. Create an AVD by running: ' + androidCmd + ' avd\n'
+                        '2. Create an AVD by running: ' + androidCmd + ' avd\n' +
                         'HINT: For a faster emulator, use an Intel System Image and install the HAXM device driver\n');
                 }
             });