Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix typo mentioned in #598
  • Loading branch information
zoffixznet committed Jun 15, 2016
1 parent e5d4cfb commit de1690d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/Type/Capture.pod
Expand Up @@ -31,8 +31,8 @@ Commonly, this term will be a List of terms, from which any Pair
literal will be placed in the named part, and all other terms will be
placed in the positional part.
my $c = \(42); # Capture with one positional parts
$c = \(1, 2, a => 'b'); # Capture with two positional and one named part
my $c = \(42); # Capture with one positional part
$c = \(1, 2, a => 'b'); # Capture with two positional and one named parts
To use such a Capture, you may use C<'|'> before it in a function call, and it
will be as if the values in the Capture were passed directly to the function
Expand Down

0 comments on commit de1690d

Please sign in to comment.