Fix typo in Rust docs: "To compiler" -> "To compile"

This commit is contained in:
Shane Utt 2018-01-16 20:07:36 -05:00
parent cb29ddca2c
commit 8dd19eaf43
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ $ docker run -it --rm --name my-running-app my-rust-app
## Compile your app inside the Docker container
There may be occasions where it is not appropriate to run your app inside a container. To compiler, but not run your app inside the Docker instance, you can write something like:
There may be occasions where it is not appropriate to run your app inside a container. To compile, but not run your app inside the Docker instance, you can write something like:
```console
$ docker run --rm --user "$(id -u)":"$(id -g)" -v "$PWD":/usr/src/myapp -w /usr/src/myapp %%IMAGE%%:1.19.0 cargo build --release