Selaa lähdekoodia

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

Shane Utt 7 vuotta sitten
vanhempi
sitoutus
8dd19eaf43
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      rust/content.md

+ 1 - 1
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