Merge pull request #3044 from bmusin/patch-1

[perl6/en]: fix typo.
This commit is contained in:
Pratik Karki 2018-01-18 22:11:16 +05:45 committed by GitHub
commit a6ec4c42a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1366,7 +1366,7 @@ sub add($a, $b) { $a + $b }
say [[&add]] 1, 2, 3; #=> 6
## * Zip meta-operator
## This one is an infix meta-operator than also can be used as a "normal"
## This one is an infix meta-operator that also can be used as a "normal"
## operator. It takes an optional binary function (by default, it just creates
## a pair), and will pop one value off of each array and call its binary
## function on these until it runs out of elements. It returns an array with