mdbook: Fix typos in proper names and script paths

Apply changes of crrev.com/c/3236708 to mdbook

BUG=none
TEST=none

Change-Id: Ida84a9157197a435156957a7eccce07de16b9cec
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3237466
Auto-Submit: Keiichi Watanabe <keiichiw@chromium.org>
Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
This commit is contained in:
Keiichi Watanabe 2021-10-22 00:41:36 +09:00 committed by Commit Bot
parent 10bc771df8
commit 26b03d02bd

View file

@ -17,11 +17,11 @@ git config --global submodule.recurse true
git config push.recurseSubmodules no
```
Crosvm development best works on debian derivaties. We provide a script to
install the necessary packages on debian:
Crosvm development best works on Debian derivatives. We provide a script to
install the necessary packages on Debian:
```
$ ./tools/install_deps
$ ./tools/install-deps
```
For other systems, please see below for instructions on
@ -32,7 +32,7 @@ For other systems, please see below for instructions on
Crosvm is built and tested on x86, aarch64 and armhf. Your host needs to be set
up to allow installation of foreign architecture packages.
On debian this is as easy as:
On Debian this is as easy as:
```sh
$ sudo dpkg --add-architecture arm64
@ -50,13 +50,13 @@ For other systems (**including gLinux**), please see below for instructions on
With that enabled, the following scripts will install the needed packages:
```sh
$ ./tools/install_aarch64_deps
$ ./tools/install_armhf_deps
$ ./tools/install-aarch64-deps
$ ./tools/install-armhf-deps
```
### Using the development container
We provide a debian container with the required packages installed. With
We provide a Debian container with the required packages installed. With
[Docker installed](https://docs.docker.com/get-docker/), it can be started with:
```sh