File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1717 * all = intersection ∪ (target ∖ intersection) = target
1818 * new = all ∖ source = {x: x ∈ target ∧ x ∉ source}
1919 * obsolete = source ∖ all = source ∖ target = {x: x ∈ source ∧ x ∉ target}
20- * Basically, the result contains messages from the target catalogue.
20+ * Basically, the result contains messages from the target catalogue.
2121 *
2222 * @author Michael Lee <michael.lee@zerustech.com>
2323 */
@@ -34,12 +34,12 @@ protected function processDomain($domain)
3434 'obsolete ' => array (),
3535 );
3636
37- // For 'all' messages, the code can't be simplified as ``$this->messages[$domain]['all'] = $target->all($domain);``,
37+ // For 'all' messages, the code can't be simplified as ``$this->messages[$domain]['all'] = $target->all($domain);``,
3838 // because doing so will drop messages like {x: x ∈ source ∧ x ∉ target.all ∧ x ∈ target.fallback}
3939 //
4040 // For 'new' messages, the code can't be simplied as ``array_diff_assoc($this->target->all($domain), $this->source->all($domain));``
4141 // because doing so will not exclude messages like {x: x ∈ target ∧ x ∉ source.all ∧ x ∈ source.fallback}
42- //
42+ //
4343 // For 'obsolete' messages, the code can't be simplifed as ``array_diff_assoc($this->source->all($domain), $this->target->all($domain))``
4444 // because doing so will not exclude messages like {x: x ∈ source ∧ x ∉ target.all ∧ x ∈ target.fallback}
4545
You can’t perform that action at this time.
0 commit comments