Remove semicolon from inline TYPEMAP in perlxstut example.
authorNathan Trapuzzano <nbtrap@nbtrap.com>
Tue, 30 Jul 2013 23:10:20 +0000 (19:10 -0400)
committerFather Chrysostomos <sprout@cpan.org>
Wed, 31 Jul 2013 00:57:13 +0000 (17:57 -0700)
dist/ExtUtils-ParseXS/lib/perlxstut.pod

index 189b6e9..403b8da 100644 (file)
@@ -615,7 +615,7 @@ Now we also need to create a typemap because the default Perl doesn't
 currently support the C<const char *> type.  Include a new TYPEMAP
 section in your XS code before the above function:
 
-        TYPEMAP: <<END;
+        TYPEMAP: <<END
        const char *    T_PV
         END