[lldb] Fix grammar in error message emitted by IRExecutionUnit

The error message "Couldn't lookup symbols" emitted from IRExecutionUnit
is grammatically incorrect. "Lookup" is noun when spelled without a
space. Update the error message to use the verb "look up" instead.
This commit is contained in:
Jonas Devlieghere
2023-08-24 11:33:14 -07:00
parent 6be47fb8be
commit a902015f54
7 changed files with 13 additions and 12 deletions

View File

@@ -288,6 +288,7 @@ class LLDB(DebuggerBase):
"use of undeclared identifier",
"no member named",
"Couldn't lookup symbols",
"Couldn't look up symbols",
"reference to local variable",
"invalid use of 'this' outside of a non-static member function",
]