Skip to content

Commit a4440a8

Browse files
committed
fix typo
1 parent eccad9f commit a4440a8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

std/jule/parser/api.jule

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fn ParseFile(mut f: &token::FileSet): &FileInfo {
3333
ret finf
3434
}
3535

36-
// Parses FilsSet's tokens and builds AST.
36+
// Parses FileSet's tokens and builds AST.
3737
// Returns nil if filesets is nil.
3838
// Skips FileSet if nil.
3939
// FileSets should not contain comment tokens.

std/jule/token/token.jule

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ const (
9191

9292
// Token.
9393
struct Token {
94-
Id: int // Identitiy of token.
94+
Id: int // Identity of token.
9595
File: &FileSet // Associated FileSet where token appear.
9696
Row: int // Row position of token.
9797
Column: int // Column position of token.

0 commit comments

Comments
 (0)