diff options
author | Karl Williamson <khw@cpan.org> | 2015-09-03 21:06:16 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-09-03 21:19:32 -0600 |
commit | f185f65418467d10121bac955af6bca4776490e3 (patch) | |
tree | b804ddd51c261e4275c54062643924f14267e5bc /pod/perlcall.pod | |
parent | fbe13c605d92f73c90ff4702b76a97c5e12927a7 (diff) | |
download | perl-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.pod | 4 |
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); ... |