From 8dd19eaf43e530138de6b8d77cf8536aba5aa8d7 Mon Sep 17 00:00:00 2001 From: Shane Utt Date: Tue, 16 Jan 2018 20:07:36 -0500 Subject: [PATCH] Fix typo in Rust docs: "To compiler" -> "To compile" --- rust/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/content.md b/rust/content.md index 12f2a0f0b..d9ebc6358 100644 --- a/rust/content.md +++ b/rust/content.md @@ -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