diff options
author | Dawn Perchik <dawn@burble.org> | 2015-07-01 17:41:02 +0000 |
---|---|---|
committer | Dawn Perchik <dawn@burble.org> | 2015-07-01 17:41:02 +0000 |
commit | 508f040994e128a174ef830da3f16f48e88ab7bf (patch) | |
tree | 11650170d632bf03760198dba975e7e9ec9bdcf6 | |
parent | e1cd96bf9e80e93805418fe8f1c6f721bb49f378 (diff) | |
download | bcm5719-llvm-508f040994e128a174ef830da3f16f48e88ab7bf.tar.gz bcm5719-llvm-508f040994e128a174ef830da3f16f48e88ab7bf.zip |
Fix typo in comment.
llvm-svn: 241173
-rw-r--r-- | lldb/source/Expression/ClangUserExpression.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Expression/ClangUserExpression.cpp b/lldb/source/Expression/ClangUserExpression.cpp index db10d35dfa5..661bab0e4b4 100644 --- a/lldb/source/Expression/ClangUserExpression.cpp +++ b/lldb/source/Expression/ClangUserExpression.cpp @@ -237,7 +237,7 @@ ClangUserExpression::ScanContext(ExecutionContext &exe_ctx, Error &err) else if (clang::FunctionDecl *function_decl = llvm::dyn_cast<clang::FunctionDecl>(decl_context)) { // We might also have a function that said in the debug information that it captured an - // object pointer. The best way to deal with getting to the ivars at present it by pretending + // object pointer. The best way to deal with getting to the ivars at present is by pretending // that this is a method of a class in whatever runtime the debug info says the object pointer // belongs to. Do that here. |