Skip to content

Commit f1b3396

Browse files
committed
fix spelling typos
1 parent 969e0f6 commit f1b3396

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ unmock_all_file_checks();
242242

243243
__END__
244244
245-
# The ouput looks similar to
245+
# The output looks similar to
246246
247247
-d '/root' called from at t/perldoc_mock-all-file-check-trace.t line 26.
248248
-l '/root' called from at t/perldoc_mock-all-file-check-trace.t line 27.
@@ -412,7 +412,7 @@ sub my_stat {
412412
413413
return $fake_stat if $f eq 'fake.stat';
414414
415-
# can also retun stats as a hash ref
415+
# can also return stats as a hash ref
416416
return { st_dev => 1, st_atime => 987654321 } if $f eq 'hash.stat';
417417
418418
return {

examples/mock-stat.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ sub my_stat {
4545

4646
return $fake_stat if $f eq 'fake.stat';
4747

48-
# can also retun stats as a hash ref
48+
# can also return stats as a hash ref
4949
return { st_dev => 1, st_atime => 987654321 } if $f eq 'hash.stat';
5050

5151
return {

examples/perldoc_mock-stat.t

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ sub my_stat {
5252

5353
return $fake_stat if $f eq 'fake.stat';
5454

55-
# can also retun stats as a hash ref
55+
# can also return stats as a hash ref
5656
return { st_dev => 1, st_atime => 987654321 } if $f eq 'hash.stat';
5757

5858
return {

examples/trace-code.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ sub my_custom_check {
2727

2828
__END__
2929
30-
# The ouput looks similar to
30+
# The output looks similar to
3131
3232
-d '/root' called from at t/perldoc_mock-all-file-check-trace.t line 26.
3333
-l '/root' called from at t/perldoc_mock-all-file-check-trace.t line 27.

0 commit comments

Comments
 (0)