Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ or parser so we'll need to add it.
}

In this set of code we've added some functionality on how to keep track of the
line and column of the "source file". As we lex every token we set our current
line and column of the "source file". As we lex every token we set our
current "lexical location" to the assorted line and column for the beginning
of the token. We do this by overriding all of the previous calls to
``getchar()`` with our new ``advance()`` that keeps track of the information
Expand Down