[llvm] 14776c6 - [Kaleidoscope] Fix typo (#125366)

via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 1 15:33:46 PST 2025


Author: FantasqueX
Date: 2025-02-01T23:33:43Z
New Revision: 14776c6d138d30653d542416141ab2adc5305e9d

URL: https://github.com/llvm/llvm-project/commit/14776c6d138d30653d542416141ab2adc5305e9d
DIFF: https://github.com/llvm/llvm-project/commit/14776c6d138d30653d542416141ab2adc5305e9d.diff

LOG: [Kaleidoscope] Fix typo (#125366)

Remove duplicate word.

Added: 
    

Modified: 
    llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst
index c75d8814918aaa..a88b6ed48e8d45 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


        


More information about the llvm-commits mailing list