Skip to content

Commit b9cd6f4

Browse files
committed
Learn new words
1 parent 54443e8 commit b9cd6f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/Type/Backtrace.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if ($!) {
2121
say $!.backtrace[*-1].perl;
2222
}
2323
24-
This will print the last dataframe in the list, pointing at the line where it's
24+
This will print the last frame in the list, pointing at the line where it's
2525
happened.
2626
2727
=head1 Methods
@@ -94,7 +94,7 @@ Returns as a list the index of the frames that called the current one.
9494
=for code
9595
sub zipi { { { die "Something bad happened" }() }() };
9696
try zipi;
97-
say $!.backtrace.outer-caller-idx( 4 ); # OUTPUT: «[6]␤»
97+
say $!.backtrace.outer-caller-idx( 4 ); # OUTPUT: «[6]␤»
9898
9999
=head2 method nice
100100
@@ -109,7 +109,7 @@ set, will stop after the first frame.
109109
sub zipi { { { die "Something bad happened" }() }() };
110110
try zipi;
111111
say $!.backtrace.nice( :oneline ) if $! │
112-
# OUTPUT: « in sub zipi at /tmp/Ik2MevkgP1 line 1␤␤»
112+
# OUTPUT: « in sub zipi at /tmp/... line 1␤␤»
113113
114114
115115
=head2 method full

0 commit comments

Comments
 (0)