Skip to content

Commit 15613f4

Browse files
committed
remove dha++
1 parent f80ef79 commit 15613f4

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

bin/p6doc

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -82,21 +82,20 @@ sub show-docs(Str $path, :$section, :$no-pager) {
8282
}
8383

8484
multi sub MAIN() {
85-
my $me = $PROGRAM-NAME;
8685

8786
say 'What documentation do you want to read?';
88-
say "Examples: $me Str";
89-
say " $me Str.split";
90-
say " $me faq";
87+
say "Examples: $PROGRAM-NAME Str";
88+
say " $PROGRAM-NAME Str.split";
89+
say " $PROGRAM-NAME faq";
9190

9291
say "\nYou can list some top level documents:";
93-
say " $me -l";
92+
say " $PROGRAM-NAME -l";
9493

9594
say "\nYou can also look up specific method/routine definitions:";
96-
say " $me -f push";
95+
say " $PROGRAM-NAME -f push";
9796

9897
say "\nYou can bypass the pager and print straight to stdout:";
99-
say " $me -n Str"
98+
say " $PROGRAM-NAME -n Str"
10099
}
101100

102101
multi sub MAIN($docee, Bool :$n) {

0 commit comments

Comments
 (0)