Unnamed repository; edit this file 'description' to name the repository.
Merge pull request #21191 from chuck-sys/fix/spelling
fix(spelling): underling -> underlying
Laurențiu Nicola 5 months ago
parent b35437d · parent beb694b · commit 34f47d9
-rw-r--r--crates/syntax/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/syntax/src/lib.rs b/crates/syntax/src/lib.rs
index 7346b93192..de341f0553 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.