From 0de367748c41af843b4989d4039269ac2092c903 Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Sat, 10 Feb 2024 18:59:47 -0800 Subject: [PATCH] Fix typo Co-authored-by: Benjamin Peter <145429680+benjamin-nw@users.noreply.github.com> --- library/std/src/env.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/env.rs b/library/std/src/env.rs index e662b26316b..a46ddfd9491 100644 --- a/library/std/src/env.rs +++ b/library/std/src/env.rs @@ -451,7 +451,7 @@ pub struct SplitPaths<'a> { /// /// # Panics /// -/// This will panic on systems where theere is no delimited `PATH` variable, +/// This will panic on systems where there is no delimited `PATH` variable, /// such as UEFI. /// /// # Examples