Skip to content

Commit 6a4ed5e

Browse files
author
H.Merijn Brand - Tux
committed
spelling and indexing/references (doc)
1 parent ee46c84 commit 6a4ed5e

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.aspell.local.pws

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ hashrefs
3535
IANA
3636
INI
3737
jcsv
38+
Mattijsen
3839
multi
3940
munge
4041
ness

lib/Text/CSV.pod6

+6-1
Original file line numberDiff line numberDiff line change
@@ -2085,6 +2085,7 @@ values returned by L</error_diag>:
20852085
20862086
=item after_parse
20872087
X<after_parse>
2088+
X<after-parse>
20882089
20892090
sub add-new (CSV::Row $r) { $r.fields.push: "NEW"; }
20902091
$csv.callbacks(after_parse => &add-new);
@@ -2110,6 +2111,7 @@ The return code of the callback is ignored.
21102111
21112112
=item before_print
21122113
X<before_print>
2114+
X<before-print>
21132115
21142116
my $idx = 1;
21152117
$csv.callbacks(before_print => { $^row[0] = $idx++ });
@@ -2244,6 +2246,7 @@ With the given example data, this filter would skip lines 2 through 8.
22442246
22452247
=item after_in
22462248
X<after_in>
2249+
X<after-in>
22472250
22482251
This callback is invoked for each record after all records have been parsed
22492252
but before returning the reference to the caller.
@@ -2253,6 +2256,7 @@ C<callbacks> wrapper.
22532256
22542257
=item before_out
22552258
X<before_out>
2259+
X<before-out>
22562260
22572261
This callback is invoked for each record before the record is printed.
22582262
@@ -2261,6 +2265,7 @@ C<callbacks> wrapper.
22612265
22622266
=item on_in
22632267
X<on_in>
2268+
X<on-in>
22642269
22652270
This callback acts exactly as the L</after_in> or the L</before_out> hooks.
22662271
@@ -2483,7 +2488,7 @@ method. Besides that, not all encodings are supported in perl6.
24832488
The L</on-in> callback currently is an alias for L</after-parse> if the
24842489
latter is not specified.
24852490
2486-
=item Exmaples
2491+
=item Examples
24872492
24882493
Convert the perl5 example/tool files to perl6 versions
24892494

0 commit comments

Comments
 (0)