1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
Description: fix POD spelling errors
Author: Jonathan Yu <jawnsy@cpan.org>
Origin: vendor
Forwarded: no
--- a/C/C.pod
+++ b/C/C.pod
@@ -62,7 +62,7 @@
void Foo(void) { # void only valid for return type
Notice that Inline only looks for function I<definitions>, not function
-I<prototypes>. Definitions are the syntax directly preceeding a function
+I<prototypes>. Definitions are the syntax directly preceding a function
body. Also Inline does not scan external files, like headers. Only the
code passed to Inline is used to create bindings; although other
libraries can linked in, and called from C-space.
--- a/Inline.pod
+++ b/Inline.pod
@@ -882,7 +882,7 @@
generated Makefile will invoke Inline in such a way that the C code will
be compiled and the executable code will be placed into the C<./blib>
directory. Then when a "C<make install>" is done, the module will be
-copied into the appropiate Perl sitelib directory (which is where an
+copied into the appropriate Perl sitelib directory (which is where an
installed module should go).
Now all you need to do is:
|