From beb694b9777174492f5f3e170e716fe7ffadb2a1 Mon Sep 17 00:00:00 2001 From: Cheuk Yin Ng Date: Mon, 1 Dec 2025 23:21:18 -0800 Subject: [PATCH] fix(spelling): underling -> underlying --- crates/syntax/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/syntax/src/lib.rs b/crates/syntax/src/lib.rs index 7346b9319248..de341f05538e 100644 --- a/crates/syntax/src/lib.rs +++ b/crates/syntax/src/lib.rs @@ -282,7 +282,7 @@ fn api_walkthrough() { assert!(parse.errors().is_empty()); // The `tree` method returns an owned syntax node of type `SourceFile`. - // Owned nodes are cheap: inside, they are `Rc` handles to the underling data. + // Owned nodes are cheap: inside, they are `Rc` handles to the underlying data. let file: SourceFile = parse.tree(); // `SourceFile` is the root of the syntax tree. We can iterate file's items.