summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2015-03-01 13:27:39 -0800
committerFather Chrysostomos <sprout@cpan.org>2015-03-01 13:27:39 -0800
commit9f021be64d99e25c9277e6c3e36d224ca74edaed (patch)
treeca803988609e469aabb88b31c2304da436b91bdb /op.c
parent71488339f94f1083d9e4d8f9014f5c979ba1a6d6 (diff)
downloadperl-9f021be64d99e25c9277e6c3e36d224ca74edaed.tar.gz
op.c apidoc typo
Diffstat (limited to 'op.c')
-rw-r--r--op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.c b/op.c
index 0a01e6cf88..e6b60695b2 100644
--- a/op.c
+++ b/op.c
@@ -4666,7 +4666,7 @@ supply up to two ops to be direct children of the list op; they are
consumed by this function and become part of the constructed op tree.
For most list operators, the check function expects all the kid ops to be
-present already, so calling C<newLISTOP(OP_JOIN, ...)> (e.g.,) is not
+present already, so calling C<newLISTOP(OP_JOIN, ...)> (e.g.) is not
appropriate. What you want to do in that case is create an op of type
OP_LIST, append more children to it, and then call L</op_convert_list>.
See L</op_convert_list> for more information.