From ffbf030a3df276fa214046c6e14a24800689dee3 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sat, 10 Mar 2018 00:03:44 +0100 Subject: [PATCH] Fix typo: cargo -> xargo --- .../second-edition/posts/02-minimal-rust-kernel/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md b/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md index 020be27a..b25e9236 100644 --- a/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md +++ b/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md @@ -135,7 +135,7 @@ We add the following build-related entries: "linker-flavor": "ld.lld", ``` -Instead of using the platform's default linker (which might not support Linux targets), we use the cross platform [LLD] linker for linking our kernel. LLD is shipped with Rust since the `2018-03-05` nightly and supported by cargo since version `0.3.11`. +Instead of using the platform's default linker (which might not support Linux targets), we use the cross platform [LLD] linker for linking our kernel. LLD is shipped with Rust since the `2018-03-05` nightly and supported by xargo (see below) since version `0.3.11`. [LLD]: https://lld.llvm.org/