This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add a missing word to perlsource.pod
[perl5.git] / pod / perlhacktips.pod
index 004b53e..bb995f3 100644 (file)
@@ -204,7 +204,7 @@ Assuming one can dereference any type of pointer for any type of data
   long pony = *p;    /* BAD */
 
 Many platforms, quite rightly so, will give you a core dump instead of
-a pony if the p happens not be correctly aligned.
+a pony if the p happens not to be correctly aligned.
 
 =item *