Trivial fix for an error message.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@118697 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Expression/ClangUserExpression.cpp b/source/Expression/ClangUserExpression.cpp
index 446b0d0..f351528 100644
--- a/source/Expression/ClangUserExpression.cpp
+++ b/source/Expression/ClangUserExpression.cpp
@@ -402,7 +402,7 @@
     }
     else
     {
-        error_stream.Printf("Expression can't be run; neither DWARF nor a JIT compiled function are present");
+        error_stream.Printf("Expression can't be run; neither DWARF nor a JIT compiled function is present");
         return false;
     }
 }