Skip to content

Commit 4a2d0f2

Browse files
committed
add closing marks that were missing
1 parent ecd74e9 commit 4a2d0f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Language/testing.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,14 +176,14 @@ C<done-testing>.
176176
177177
You can also provide a C<:skip-all> named argument instead of a test count,
178178
to indicate that you want to skip all of the tests. Such a plan will
179-
call L«C<exit>|/routine/exit>, unless used inside of a C<subtest>.
179+
call L«C<exit>|/routine/exit>», unless used inside of a C<subtest>.
180180
181181
plan :skip-all<These tests are only for Windows> unless $*DISTRO.is-win;
182182
plan 1;
183183
ok dir 'C:/'; # this won't get run on non-Windows
184184
185185
If used in a C<subtest>, it will instead C<return> from that
186-
C<subtest>'s L«C<Callable>|/type/Callable>. For that reason, to be able to
186+
C<subtest>'s L«C<Callable>|/type/Callable>». For that reason, to be able to
187187
use C<:skip-all> inside a C<subtest>, you must use a C<sub> instead of a
188188
regular block:
189189

0 commit comments

Comments
 (0)