From 14776c6d138d30653d542416141ab2adc5305e9d Mon Sep 17 00:00:00 2001 From: FantasqueX Date: Sun, 2 Feb 2025 07:33:43 +0800 Subject: [Kaleidoscope] Fix typo (#125366) Remove duplicate word. --- llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/docs/tutorial/MyFirstLanguageFrontend') 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 -- cgit v1.1