aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-11-28 15:00:29 +0100
committerMattias Andrée <maandree@operamail.com>2014-11-28 15:00:29 +0100
commitd133b43aabae573f4c0c6f7ab9bbf8601d9e7d09 (patch)
tree989673373cb8f4288bd9c3c39166b85902375083 /src
parentmds-kbdc: eliminate unorded subseq:s inside alternations (diff)
downloadmds-d133b43aabae573f4c0c6f7ab9bbf8601d9e7d09.tar.gz
mds-d133b43aabae573f4c0c6f7ab9bbf8601d9e7d09.tar.bz2
mds-d133b43aabae573f4c0c6f7ab9bbf8601d9e7d09.tar.xz
m comment
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src')
-rw-r--r--src/mds-kbdc/simplify-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mds-kbdc/simplify-tree.c b/src/mds-kbdc/simplify-tree.c
index 705a9dc..3cd97b8 100644
--- a/src/mds-kbdc/simplify-tree.c
+++ b/src/mds-kbdc/simplify-tree.c
@@ -322,7 +322,7 @@ static int simplify_alternation(mds_kbdc_tree_alternation_t* restrict tree)
else if (argument->type == MDS_KBDC_TREE_TYPE_UNORDERED)
{
/* Nesting unordered subsequence,
- simplifies to alternation of ordered subsequence. */
+ simplifies to alternation of ordered subsequence, or simpler. */
NEW_ERROR(argument, WARNING, "unorderd subsequence inside alternation is discouraged");
if (simplify_unordered(&(argument->unordered)))
return -1;