[llvm] [docs] [kaleidoscope] Remove misplaced backslash from JIT tutorial (PR #213483)

Daniel Scherzer via llvm-commits llvm-commits at lists.llvm.org
Sat Aug 1 12:26:53 PDT 2026


https://github.com/DanielEScherzer created https://github.com/llvm/llvm-project/pull/213483

In order to represent names starting with the string "InitializeNativeTarget", use "InitializeNativeTarget*" rather than "InitializeNativeTarget\*".

>From fc7ba2067711f5edf3bbd495c864093c138be853 Mon Sep 17 00:00:00 2001
From: Daniel Scherzer <daniel.e.scherzer at gmail.com>
Date: Sat, 1 Aug 2026 12:26:37 -0700
Subject: [PATCH] [docs] [kaleidoscope] Remove misplaced backslash from JIT
 tutorial

In order to represent names starting with the string "InitializeNativeTarget",
use "InitializeNativeTarget*" rather than "InitializeNativeTarget\*".
---
 llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst
index 377addf58bcb4..9c54ccd4cb319 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst
@@ -262,7 +262,7 @@ be able to call it from the command line.
 
 In order to do this, we first prepare the environment to create code for
 the current native target and declare and initialize the JIT. This is
-done by calling some ``InitializeNativeTarget\*`` functions and
+done by calling some ``InitializeNativeTarget*`` functions and
 adding a global variable ``TheJIT``, and initializing it in
 ``main``:
 



More information about the llvm-commits mailing list