Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit be6d5c0

Browse files
vaitkuswchristian
authored andcommitted
perlfaq8.pod: fix a few typos
1 parent 9ed10b6 commit be6d5c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/perlfaq8.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1126,7 +1126,7 @@ C<sysopen()>:
11261126

11271127
use Fcntl;
11281128
sysopen(my $fh, "/foo/somefile", O_WRONLY|O_NDELAY|O_CREAT, 0644)
1129-
or die "can't open /foo/somefile: $!":
1129+
or die "can't open /foo/somefile: $!";
11301130

11311131
=head2 How do I tell the difference between errors from the shell and perl?
11321132

@@ -1316,7 +1316,7 @@ L<ExtUtils::MakeMaker> advocated. INSTALL_BASE does not support
13161316
installing modules for multiple versions of Perl or different
13171317
architectures under the same directory. You should consider whether you
13181318
really want that and, if you do, use the older PREFIX and LIB
1319-
settings. See the L<ExtUtils::Makemaker> documentation for more details.
1319+
settings. See the L<ExtUtils::MakeMaker> documentation for more details.
13201320

13211321
=head2 How do I add the directory my program lives in to the module/library search path?
13221322

0 commit comments

Comments
 (0)