about summary refs log tree commit diff
path: root/compiler/rustc_resolve/src
diff options
context:
space:
mode:
authorbinarycat <binarycat@envs.net>2025-08-06 17:21:25 -0500
committerbinarycat <binarycat@envs.net>2025-08-16 09:51:44 -0500
commite31fed054bc19845b04ee0be50c1254174e87ad0 (patch)
treef6abc24073b265df940cd2d79ef0879358a53f4e /compiler/rustc_resolve/src
parent2e2642e641a941f0a1400c7827fd89aa86fef8f4 (diff)
downloadrust-e31fed054bc19845b04ee0be50c1254174e87ad0.tar.gz
rust-e31fed054bc19845b04ee0be50c1254174e87ad0.zip
run spellcheck as a tidy extra check in ci
Diffstat (limited to 'compiler/rustc_resolve/src')
-rw-r--r--compiler/rustc_resolve/src/late.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_resolve/src/late.rs b/compiler/rustc_resolve/src/late.rs
index 5200f9340e1..679e663f886 100644
--- a/compiler/rustc_resolve/src/late.rs
+++ b/compiler/rustc_resolve/src/late.rs
@@ -4270,7 +4270,7 @@ impl<'a, 'ast, 'ra, 'tcx> LateResolutionVisitor<'a, 'ast, 'ra, 'tcx> {
                         if path.len() == 2
                             && let [segment] = prefix_path
                         {
-                            // Delay to check whether methond name is an associated function or not
+                            // Delay to check whether method name is an associated function or not
                             // ```
                             // let foo = Foo {};
                             // foo::bar(); // possibly suggest to foo.bar();