Skip to content

Commit 0c421ac

Browse files
authored
neaten comments
1 parent b379c9a commit 0c421ac

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

doc/Type/IO.pod6

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,8 +316,9 @@ C<False>.
316316
Runs an external command without involving a shell.
317317
318318
run ‚touch‘, ‚>foo.txt‘; # no shell redirect (as there is no shell)
319-
shell ‚ls \>*‘; # the shell would redirect, hence the backslash and the glob is expanded
320-
run Q:w{rm >foo.txt}; # again no redirect but with a list word quote
319+
shell ‚ls \>*‘; # the shell would redirect, hence the backslash
320+
# and the glob is expanded
321+
run Q:w{rm >foo.txt}; # again no redirect but with a list word quote
321322
# OUTPUT: «>foo.txt»
322323
323324
See L<Proc|/type/Proc> for more details, for example on how to capture

0 commit comments

Comments
 (0)