erisu commented on code in PR #1313:
URL: https://github.com/apache/cordova-docs/pull/1313#discussion_r1204055195


##########
www/docs/en/dev/guide/cli/index.md:
##########
@@ -133,86 +120,78 @@ Android target: installed 
android-19,android-21,android-22,android-23,Google Inc
 Gradle: installed
 
 Requirements check results for ios:
-Apple OS X: not installed
-Cordova tooling for iOS requires Apple OS X
+Apple macOS: not installed
+Cordova tooling for iOS requires Apple macOS
 Error: Some of requirements check failed
 ```
 
-### See Also
+**See Also:**
+
 - [Android platform 
requirements](../../guide/platforms/android/index.html#requirements-and-support)
 - [iOS platform 
requirements](../../guide/platforms/ios/index.html#requirements-and-support)
 - [Windows platform 
requirements](../../guide/platforms/windows/index.html#requirements-and-support)
 
 ## Build the App
 
-By default, `cordova create` script generates a skeletal web-based application 
whose start page is the project's `www/index.html` file. Any
-initialization should be specified as part of the 
[deviceready][DeviceReadyEvent] event handler defined in `www/js/index.js`.
+By default, `cordova create` script generates a skeletal web-based application 
whose start page is the project's `www/index.html` file. Any initialization 
should be specified as part of the [deviceready][DeviceReadyEvent] event 
handler defined in `www/js/index.js`.
 
 Run the following command to build the project for _all_ platforms:
 
 ```bash
-$ cordova build
+cordova build
 ```
 
 You can optionally limit the scope of each build to specific platforms - 'ios' 
in this case:
 
 ```bash
-$ cordova build ios
+cordova build ios
 ```
 
-### See Also
+**See Also:**
+
 - [Cordova build command reference documentation][cdv_build]
 
 ## Test the App
 
-SDKs for mobile platforms often come bundled with emulators that
-execute a device image, so that you can launch the app from the home
-screen and see how it interacts with many platform features.  Run a
-command such as the following to rebuild the app and view it within a
-specific platform's emulator:
+SDKs for mobile platforms often come bundled with emulators that execute a 
device image, so that you can launch the app from the home screen and see how 
it interacts with many platform features.  Run a command such as the following 
to rebuild the app and view it within a specific platform's emulator:
 
 ```bash
-$ cordova emulate android
+cordova emulate android
 ```
 
 ![]({{ site.baseurl }}/static/img/guide/cli/android_emulate_init.png)
 
-Following up with the `cordova emulate` command refreshes the emulator
-image to display the latest application, which is now available for
-launch from the home screen:
+Following up with the `cordova emulate` command refreshes the emulator image 
to display the latest application, which is now available for launch from the 
home screen:
 
 ![]({{ site.baseurl }}/static/img/guide/cli/android_emulate_install.png)
 
-Alternately, you can plug the handset into your computer and test the
-app directly:
+Alternately, you can plug the handset into your computer and test the app 
directly:
 
 ```bash
-$ cordova run android
+cordova run android
 ```
 
-Before running this command, you need to set up the device for
-testing, following procedures that vary for each platform.
+Before running this command, you need to set up the device for testing, 
following procedures that vary for each platform.
+
+**See Also:**
 
-### See Also
 - [Setting up Android 
emulator](../../guide/platforms/android/index.html#setting-up-an-emulator)
 - [Cordova run command reference documentation][cdv_run]
 - [Cordova emulate command reference documentation][cdv_emulate]
 
 ## Add Plugins
 
-You can modify the default generated app to take advantage of standard web 
technologies,
-but for the app to access device-level features, you need to add plugins.
+You can modify the default generated app to take advantage of standard web 
technologies, but for the app to access device-level features, you need to add 
plugins.
 
-A _plugin_ exposes a Javascript API for native SDK functionality. Plugins are 
typically hosted on
-npm and you can search for them on the [plugin search page](/plugins/). Some 
key APIs are provided by the Apache Cordova open source project and these are 
referred to as [Core Plugin APIs]. You can also use the CLI to launch the 
search page:
+A _plugin_ exposes a Javascript API for native SDK functionality. Plugins are 
typically hosted on npm and you can search for them on the [plugin search 
page](/plugins/). Some key APIs are provided by the Apache Cordova open source 
project and these are referred to as [Core Plugin APIs]. You can also use the 
CLI to launch the search page:
 
 ```bash
-$ cordova plugin search camera
+cordova plugin search camera

Review Comment:
   Removed.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to