From 2ee728c5ff76a84dce87f23592df01c7f8ed7c04 Mon Sep 17 00:00:00 2001 From: vallentin Date: Mon, 10 Feb 2020 14:25:55 +0100 Subject: [PATCH] Fixed typo --- .../cargo-and-crates-io/cargo-check-for-faster-checking.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rust-2018/cargo-and-crates-io/cargo-check-for-faster-checking.md b/src/rust-2018/cargo-and-crates-io/cargo-check-for-faster-checking.md index 39812f70..e3883f3b 100644 --- a/src/rust-2018/cargo-and-crates-io/cargo-check-for-faster-checking.md +++ b/src/rust-2018/cargo-and-crates-io/cargo-check-for-faster-checking.md @@ -14,7 +14,7 @@ correct, all that stuff. Second, once it's satisfied that everything is in order, it produces the actual binary code that you end up executing. It turns out that that second step takes a lot of time. And most of the time, -it's not neccesary. That is, when you're working on some Rust code, many +it's not necessary. That is, when you're working on some Rust code, many developers will get into a workflow like this: 1. Write some code.