File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ if ($!) {
21
21
say $!.backtrace[*-1].perl;
22
22
}
23
23
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
25
25
happened.
26
26
27
27
= head1 Methods
@@ -94,7 +94,7 @@ Returns as a list the index of the frames that called the current one.
94
94
= for code
95
95
sub zipi { { { die "Something bad happened" }() }() };
96
96
try zipi;
97
- say $!.backtrace.outer-caller-idx( 4 ); # OUTPUT: «[6]»
97
+ say $!.backtrace.outer-caller-idx( 4 ); # OUTPUT: «[6]»
98
98
99
99
= head2 method nice
100
100
@@ -109,7 +109,7 @@ set, will stop after the first frame.
109
109
sub zipi { { { die "Something bad happened" }() }() };
110
110
try zipi;
111
111
say $!.backtrace.nice( :oneline ) if $! │
112
- # OUTPUT: « in sub zipi at /tmp/Ik2MevkgP1 line 1»
112
+ # OUTPUT: « in sub zipi at /tmp/... line 1»
113
113
114
114
115
115
= head2 method full
You can’t perform that action at this time.
0 commit comments