Skip to content

Commit

Permalink
Fix typos in CHANGELOG.md and doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
not-my-profile committed Oct 3, 2024
1 parent e4222ef commit d1207ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ First stable version.

### Bug fixes

Declare `matchContext` as a property of `SytaxNodeRef`.
Declare `matchContext` as a property of `SyntaxNodeRef`.

## 0.16.0 (2022-04-20)

Expand Down Expand Up @@ -322,7 +322,7 @@ Node types have a new `is` method for checking whether their name or one of thei

### Bug fixes

Fix lezer depencency versions
Fix lezer dependency versions

## 0.11.0 (2020-09-26)

Expand Down
2 changes: 1 addition & 1 deletion src/tree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1254,7 +1254,7 @@ export class TreeCursor implements SyntaxNodeRef {
/// the next sibling of the first parent node that has one.
next(enter = true) { return this.move(1, enter) }

/// Move to the next node in a last-to-first pre-order traveral. A
/// Move to the next node in a last-to-first pre-order traversal. A
/// node is followed by its last child or, if it has none, its
/// previous sibling or the previous sibling of the first parent
/// node that has one.
Expand Down

0 comments on commit d1207ef

Please sign in to comment.