Skip to content

Commit

Permalink
Fixed missing closing brace in code example
Browse files Browse the repository at this point in the history
  • Loading branch information
Util committed Jun 5, 2010
1 parent b3a2e1c commit 190bf45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/subs-n-sigs.pod
Expand Up @@ -706,7 +706,7 @@ parameter with a C<where> block:

=begin programlisting

sub circle-radius-from-area(Numeric $area where { $area >= 0) {
sub circle-radius-from-area(Numeric $area where { $area >= 0 }) {
($area / pi).sqrt
}
say circle-radius-from-area(3); # OK
Expand Down

0 comments on commit 190bf45

Please sign in to comment.