about summary refs log tree commit diff homepage
path: root/include
diff options
context:
space:
mode:
authorCristian Cadar <cristic@cs.stanford.edu>2013-05-07 12:38:01 +0000
committerCristian Cadar <cristic@cs.stanford.edu>2013-05-07 12:38:01 +0000
commit1bc231e06a63299cdf8a34613bd590d8e06788dc (patch)
tree0c548a48e9807f28ec3211a627e20e359caecaf8 /include
parent16215331714a015bcbe78212d638cb698396068a (diff)
downloadklee-1bc231e06a63299cdf8a34613bd590d8e06788dc.tar.gz
Fixed incorrect comment.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@181306 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/klee/Solver.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/klee/Solver.h b/include/klee/Solver.h
index 9e05967d..46925164 100644
--- a/include/klee/Solver.h
+++ b/include/klee/Solver.h
@@ -93,7 +93,7 @@ namespace klee {
     bool mustBeFalse(const Query&, bool &result);
 
     /// mayBeTrue - Determine if there is a valid assignment for the given state
-    /// in which the expression evaluates to false.
+    /// in which the expression evaluates to true.
     ///
     /// \param [out] result - On success, true iff the expresssion is true for
     /// some satisfying assignment.