summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2018-06-18 09:56:31 -0700
committerAndres Noetzli <andres.noetzli@gmail.com>2018-06-18 09:56:31 -0700
commitc3e9dffa38fa689425a7d11446e3c3452eb925ae (patch)
tree0c27260418a9746bec9399c8a3f69b322036068b
parentdf6ffcdacbffdda6a72ed5b2a4bc1c4316a9511b (diff)
fix commentreplaceReplace
-rw-r--r--src/theory/strings/theory_strings_rewriter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/strings/theory_strings_rewriter.cpp b/src/theory/strings/theory_strings_rewriter.cpp
index 7a7950d19..d6299e17e 100644
--- a/src/theory/strings/theory_strings_rewriter.cpp
+++ b/src/theory/strings/theory_strings_rewriter.cpp
@@ -1733,9 +1733,9 @@ Node TheoryStringsRewriter::rewriteContains( Node node ) {
// if (str.contains x y) = false and (str.contains x w) = false
//
// Reasoning: (str.contains x y) checks that x does not contain y if the
- // inner replacement does not change y. (str.contains x w) checks that if
- // the inner replacement changes anything in y, the w makes it impossible
- // for it to occur in x.
+ // replacement does not change y. (str.contains x w) checks that if the
+ // replacement changes anything in y, the w makes it impossible for it to
+ // occur in x.
Node ctnUnchanged = nm->mkNode(kind::STRING_STRCTN, node[0], n[0]);
Node ctnUnchangedR = Rewriter::rewrite(ctnUnchanged);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback