[llvm] [orc-rt] Fix typo in comment. NFC. (PR #217001)
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 18 04:47:10 PDT 2026
https://github.com/lhames created https://github.com/llvm/llvm-project/pull/217001
None
>From 7da91e7fda7b6a2ef8cdc835a9a03d1c6323aa21 Mon Sep 17 00:00:00 2001
From: Lang Hames <lhames at gmail.com>
Date: Tue, 18 Aug 2026 21:44:38 +1000
Subject: [PATCH] [orc-rt] Fix typo in comment. NFC.
---
orc-rt/lib/executor/InProcessControllerAccess.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/orc-rt/lib/executor/InProcessControllerAccess.cpp b/orc-rt/lib/executor/InProcessControllerAccess.cpp
index a4a39f10ca4f3..5cad94c65b7bc 100644
--- a/orc-rt/lib/executor/InProcessControllerAccess.cpp
+++ b/orc-rt/lib/executor/InProcessControllerAccess.cpp
@@ -181,7 +181,7 @@ void InProcessControllerAccess::connect(BootstrapInfo BI) {
// C->Disconnect(C) then it might have acquired responsibility for calling
// InProcessControllerAccess::onDisconnect. In this case control may return
// from disconnect below early, potentially causing us to return from
- // 'connect' before notifyDisconnect is called. This may lead to confusing
+ // 'connect' before notifyDisconnected is called. This may lead to confusing
// logs (since reportError will log error but connect will appear to
// succeed), however onDisconnect will still be called eventually, and the
// Session will detach as if the remote had initiated the action after a
More information about the llvm-commits
mailing list