* src/tgba/tgbagraph.cc: Improve comment.

This commit is contained in:
Alexandre Duret-Lutz 2014-10-08 16:52:30 +02:00
parent 1696fac80c
commit b6745482af

View file

@ -47,9 +47,8 @@ namespace spot
auto p = trmap.emplace(k, t.trans());
if (!p.second)
{
// A previous transitions exist for k, merge the
// condition, and schedule the transition for
// removal.
// A previous transitions exists for k. Merge the
// condition, and schedule the transition for removal.
g_.trans_data(p.first->second).cond |= t->cond;
t.erase();
}