Skip to content

Commit 8feb8de

Browse files
committed
Reword
1 parent f94185e commit 8feb8de

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/Language/io.pod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ writing the data to the file and closing it again for us:
6464
6565
spurt "testfile", "data and stuff\n";
6666
67-
By default all (text) files are written as UTF-8, however if necessary, one
68-
can explicitly specify an encoding via the C<:enc> option:
67+
By default all (text) files are written as UTF-8, however if necessary, an
68+
explicit encoding can be specified via the C<:enc> option:
6969
7070
spurt "testfile", "latin1 text: äöüß", enc => "latin1";
7171
72-
To append to a file, one can specify the C<:a> option when opening the file
73-
handle explicitly,
72+
To append to a file, specify the C<:a> option when opening the file handle
73+
explicitly,
7474
7575
my $fh = open "testfile", :a;
7676
$fh.print("more data\n");

0 commit comments

Comments
 (0)