From 27b8016be57e0dd58281eda289953369d3b28075 Mon Sep 17 00:00:00 2001 From: Marco Leogrande Date: Sun, 5 Dec 2021 00:04:18 -0800 Subject: [PATCH] Fix typo (neccesary -> necessary) --- src/rust-2018/path-changes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rust-2018/path-changes.md b/src/rust-2018/path-changes.md index fc16d472..ca2c27ca 100644 --- a/src/rust-2018/path-changes.md +++ b/src/rust-2018/path-changes.md @@ -83,7 +83,7 @@ general way to express this, though it uses it for `proc_macro` crates. Some examples of needing to explicitly import sysroot crates are: -* [`std`]: Usually this is not neccesary, because `std` is automatically +* [`std`]: Usually this is not necessary, because `std` is automatically imported unless the crate is marked with [`#![no_std]`][no_std]. * [`core`]: Usually this is not necessary, because `core` is automatically imported, unless the crate is marked with [`#![no_core]`][no_core]. For