Author: bernhard
Date: Fri Nov 28 02:15:27 2008
New Revision: 33305
Modified:
trunk/languages/perl6/Test.pm
Log:
[codingstd] remove trailing space
Modified: trunk/languages/perl6/Test.pm
==============================================================================
--- trunk/languages/perl6/Test.pm (original)
+++ trunk/languages/perl6/Test.pm Fri Nov 28 02:15:27 2008
@@ -174,7 +174,7 @@
return $this eq $that;
}
elsif $this ~~ Pair && $that ~~ Pair {
- return $this.key eq $that.key
+ return $this.key eq $that.key
&& _is_deeply( $this.value, $this.value );
}
elsif $this ~~ undef && $that ~~ undef && $this.WHAT eq $that.WHAT {