From c572ff840f63a8ce58a922d44d0fa53f25636125 Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Sat, 24 Apr 2021 18:01:56 -0700 Subject: [PATCH] [ORC][C-bindings] Fix missing ')' in comments. --- llvm/include/llvm-c/Orc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/include/llvm-c/Orc.h b/llvm/include/llvm-c/Orc.h index 9beef44c89dd..c6cb862de474 100644 --- a/llvm/include/llvm-c/Orc.h +++ b/llvm/include/llvm-c/Orc.h @@ -207,8 +207,8 @@ typedef struct LLVMOrcOpaqueLookupState *LLVMOrcLookupStateRef; * asynchronous definition process has been completed clients must call * LLVMOrcLookupStateContinueLookup to continue the lookup (this should be * done unconditionally, even if errors have occurred in the mean time, to - * free the lookup state memory and notify the query object of the failures. If - * LookupState is captured this function must return LLVMErrorSuccess. + * free the lookup state memory and notify the query object of the failures). + * If LookupState is captured this function must return LLVMErrorSuccess. * * The Kind argument can be inspected to determine the lookup kind (e.g. * as-if-during-static-link, or as-if-during-dlsym).