commit | e44e0f0f5875005d13ac9bc1cfec93853b7340fe | [log] [tgz] |
---|---|---|
author | Nate Fischer <[email protected]> | Wed May 29 20:09:53 2019 |
committer | Commit Bot <[email protected]> | Wed May 29 20:09:53 2019 |
tree | 5bf96674cc29db89ce42796595855f12bae2a8f0 | |
parent | e26d7cf3165960b6d51764086cda27adac5be9c8 [diff] [blame] |
Docs: fix spelling error This fixes a typo. Test: N/A Change-Id: I0e0f61a25b0cb89abf33e55086dd68ecb9e8cd8b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1633772 Commit-Queue: Peter Wen <[email protected]> Auto-Submit: Nate Fischer <[email protected]> Reviewed-by: Peter Wen <[email protected]> Cr-Commit-Position: refs/heads/master@{#664420}
diff --git a/docs/android_emulator.md b/docs/android_emulator.md index b14f9ff..49ab0b9 100644 --- a/docs/android_emulator.md +++ b/docs/android_emulator.md
@@ -93,7 +93,7 @@ ```shell $ # Start 8 emulators. Press Ctrl-C to stop them all. $ ( for i in $(seq 8); do ~/Android/Sdk/emulator/emulator @EMULATOR_ID -read-only & done; wait ) -$ # Start 12 emulators. More than 10 requires disabling audio on some OS's. Reducing cores increases paralellism. +$ # Start 12 emulators. More than 10 requires disabling audio on some OS's. Reducing cores increases parallelism. $ ( for i in $(seq 12); do ~/Android/Sdk/emulator/emulator @EMULATOR_ID -read-only -no-audio -cores 2 & done; wait ) ```