Skip to content

Commit e5493eb

Browse files
Remove trailing space
1 parent c84732e commit e5493eb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Catalogue/TargetOperation.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
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 <[email protected]>
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

0 commit comments

Comments
 (0)