Skip to content

Commit

Permalink
Remove space from translation in to_listop.
Browse files Browse the repository at this point in the history
We already add a space at the end in the 'join'; there's no need to put
two spaces there.
  • Loading branch information
pne committed Jun 19, 2009
1 parent 93dabcd commit 0a1f9f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Lingua/tlhInganHol/yIghun.pm
Expand Up @@ -209,7 +209,7 @@ my $v_listop = enqr keys %v_listop;
sub to_listop {
my ($block, @list) = @_;
my $op = pop @list;
return join " ", map("$_->{trans} ", $op, $block),
return join " ", map($_->{trans}, $op, $block),
join ",", map $_->{trans}, @list;
}

Expand Down

0 comments on commit 0a1f9f7

Please sign in to comment.