[llvm] [SandboxIR] Fix typo in doc (PR #167315)
Connector Switch via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 10 06:03:53 PST 2025
https://github.com/c8ef created https://github.com/llvm/llvm-project/pull/167315
None
>From 2237c533e3aee67ae1cb497f717535f853678edc Mon Sep 17 00:00:00 2001
From: c8ef <c8ef at outlook.com>
Date: Mon, 10 Nov 2025 22:03:24 +0800
Subject: [PATCH] [SandboxIR] Fix typo in doc
---
llvm/docs/SandboxIR.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/llvm/docs/SandboxIR.md b/llvm/docs/SandboxIR.md
index d2b612ba95ef1..dbf488bba735c 100644
--- a/llvm/docs/SandboxIR.md
+++ b/llvm/docs/SandboxIR.md
@@ -8,8 +8,8 @@ Within your LLVM pass:
``` C++
// 1. Include the necessary Sandbox IR header files.
-#include "llvm/SandboxIR/Context.h
-#include "llvm/SandboxIR/Function.h
+#include "llvm/SandboxIR/Context.h"
+#include "llvm/SandboxIR/Function.h"
// 2. Create a sandboxir::Context using LLVMContext `LLVMCtx`.
sandboxir::Context Ctx(LLVMCtx);
More information about the llvm-commits
mailing list