summaryrefslogtreecommitdiff
path: root/pod/perlcall.pod
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-09-03 21:06:16 -0600
committerKarl Williamson <khw@cpan.org>2015-09-03 21:19:32 -0600
commitf185f65418467d10121bac955af6bca4776490e3 (patch)
treeb804ddd51c261e4275c54062643924f14267e5bc /pod/perlcall.pod
parentfbe13c605d92f73c90ff4702b76a97c5e12927a7 (diff)
downloadperl-f185f65418467d10121bac955af6bca4776490e3.tar.gz
Start fixing some pod pedantic errors
This fixes a bunch of them, but there are many more
Diffstat (limited to 'pod/perlcall.pod')
-rw-r--r--pod/perlcall.pod4
1 files changed, 3 insertions, 1 deletions
diff --git a/pod/perlcall.pod b/pod/perlcall.pod
index c0af7e8f2a..327e253346 100644
--- a/pod/perlcall.pod
+++ b/pod/perlcall.pod
@@ -1909,7 +1909,9 @@ done inside our C code:
...
- SV *cvrv = eval_pv("sub { print 'You will not find me cluttering any namespace!' }", TRUE);
+ SV *cvrv = eval_pv("sub {
+ print 'You will not find me cluttering any namespace!'
+ }", TRUE);
...