Skip to content

Commit beb694b

Browse files
committed
fix(spelling): underling -> underlying
1 parent b35437d commit beb694b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/syntax/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ fn api_walkthrough() {
282282
assert!(parse.errors().is_empty());
283283

284284
// The `tree` method returns an owned syntax node of type `SourceFile`.
285-
// Owned nodes are cheap: inside, they are `Rc` handles to the underling data.
285+
// Owned nodes are cheap: inside, they are `Rc` handles to the underlying data.
286286
let file: SourceFile = parse.tree();
287287

288288
// `SourceFile` is the root of the syntax tree. We can iterate file's items.

0 commit comments

Comments
 (0)