Skip to content

Commit a8fadeb

Browse files
committed
turn tabs into whitespaces
1 parent fd61951 commit a8fadeb

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

doc/Language/variables.pod

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ X<|is (container type)>
3333
The default type can be set with C<is>.
3434
3535
class FailHash is Hash {
36-
has Bool $!final = False;
37-
multi method AT-KEY ( ::?CLASS:D: Str:D \key ){
38-
fail X::OutOfRange.new(:what("Hash key"), :got(key), :range(self.keys)) if $!final && !self.EXISTS-KEY(key);
39-
callsame
40-
}
41-
42-
method finalize () {
43-
$!final = True
44-
}
36+
has Bool $!final = False;
37+
multi method AT-KEY ( ::?CLASS:D: Str:D \key ){
38+
fail X::OutOfRange.new(:what("Hash key"), :got(key), :range(self.keys)) if $!final && !self.EXISTS-KEY(key);
39+
callsame
40+
}
41+
42+
method finalize () {
43+
$!final = True
44+
}
4545
}
4646
4747
my %h is FailHash = oranges => "round", bananas => "bendy";

0 commit comments

Comments
 (0)