Skip to content

Commit 79e0643

Browse files
committed
Fix xtest code compilation; Fixes #1322
1 parent cbae565 commit 79e0643

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

doc/Type/IO/Path.pod6

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -702,9 +702,7 @@ C<$sibling> is allowed to be a multi-part path fragment, although
702702
703703
Defined as:
704704
705-
method words(IO::Path:D:
706-
:$chomp = True, :$enc = 'utf8', :$nl-in = ["\x0A", "\r\n"], |c --> Seq:D
707-
)
705+
method words(IO::Path:D: :$chomp = True, :$enc = 'utf8', :$nl-in = ["\x0A", "\r\n"], |c --> Seq:D)
708706
709707
Opens the invocant and returns its L«words|/type/IO::Handle#routine_words».
710708
@@ -729,9 +727,7 @@ say "Most common words: ", %dict.sort(-*.value).head: 5;
729727
730728
Defined as:
731729
732-
method lines(IO::Path:D:
733-
:$chomp = True, :$enc = 'utf8', :$nl-in = ["\x0A", "\r\n"], |c --> Seq:D
734-
)
730+
method lines(IO::Path:D: :$chomp = True, :$enc = 'utf8', :$nl-in = ["\x0A", "\r\n"], |c --> Seq:D)
735731
736732
Opens the invocant and returns its L«lines|/type/IO::Handle#routine_lines».
737733

0 commit comments

Comments
 (0)