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