Skip to content

Commit bb448e5

Browse files
pjcjkhwilliamson
authored andcommitted
Fix typos in perlopentut
1 parent 761f20f commit bb448e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pod/perlopentut.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ Here's an example of how to copy a binary file:
235235

236236
my $BUFSIZ = 64 * (2 ** 10);
237237
my $name_in = "/some/input/file";
238-
my $name_out = "/some/output/flie";
238+
my $name_out = "/some/output/file";
239239

240240
my($in_fh, $out_fh, $buffer);
241241

@@ -312,7 +312,7 @@ separate program, rather than an ordinary filehandle into a file.
312312

313313
Note that the third argument to C<open> is a string containing the
314314
program name (C<sort>) plus all its arguments: in this case, C<-u> to
315-
specify unqiue sort, and then a fileglob specifying the files to sort.
315+
specify unique sort, and then a fileglob specifying the files to sort.
316316
The resulting filehandle C<$sort_fh> works just like a read-only (C<<
317317
"<" >>) filehandle, and your program can subsequently read data
318318
from it as if it were opened onto an ordinary, single file.

0 commit comments

Comments
 (0)