diff options
author | FantasqueX <fantasquex@gmail.com> | 2025-02-02 07:33:43 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-01 23:33:43 +0000 |
commit | 14776c6d138d30653d542416141ab2adc5305e9d (patch) | |
tree | 05657aaad8d3870a8d27bfe2b886978ff914785f /llvm/docs/tutorial/MyFirstLanguageFrontend | |
parent | b798679c076af4acaa806e893b038372f5954298 (diff) | |
download | llvm-14776c6d138d30653d542416141ab2adc5305e9d.zip llvm-14776c6d138d30653d542416141ab2adc5305e9d.tar.gz llvm-14776c6d138d30653d542416141ab2adc5305e9d.tar.bz2 |
[Kaleidoscope] Fix typo (#125366)
Remove duplicate word.
Diffstat (limited to 'llvm/docs/tutorial/MyFirstLanguageFrontend')
-rw-r--r-- | llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst index c75d881..a88b6ed 100644 --- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst +++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst @@ -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 |