diff --git a/docs/cross_compilation.md b/docs/cross_compilation.md index 4d7cca02e33..56482984055 100644 --- a/docs/cross_compilation.md +++ b/docs/cross_compilation.md @@ -49,7 +49,7 @@ mkShell { # Tell cargo about the linker and an optional emulater. So they can be used in `cargo build` # and `cargo run`. # Environment variables are in format `CARGO_TARGET__LINKER`. - # They are also be set in `.cargo/config.toml` instead. + # They can also be set in `.cargo/config.toml` instead. # See: https://doc.rust-lang.org/cargo/reference/config.html#target CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER = "${stdenv.cc.targetPrefix}cc"; CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUNNER = "qemu-aarch64";