From 2aeb5b5da31fc549f7f43b9e3dcaeb85110e4dc7 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 18 Aug 2023 11:18:24 +0200 Subject: [PATCH] Fix typo: "use" -> "used" Signed-off-by: Matthias Beyer --- src/cargo/core/compiler/context/compilation_files.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cargo/core/compiler/context/compilation_files.rs b/src/cargo/core/compiler/context/compilation_files.rs index f781effdfd1..126e1711272 100644 --- a/src/cargo/core/compiler/context/compilation_files.rs +++ b/src/cargo/core/compiler/context/compilation_files.rs @@ -26,7 +26,7 @@ use crate::util::{self, CargoResult, StableHasher}; const METADATA_VERSION: u8 = 2; /// The `Metadata` is a hash used to make unique file names for each unit in a -/// build. It is also use for symbol mangling. +/// build. It is also used for symbol mangling. /// /// For example: /// - A project may depend on crate `A` and crate `B`, so the package name must be in the file name.