Skip to content

Commit a701520

Browse files
committed
Merge branch 'master' of https://github.com/perl6/doc
2 parents 9fab598 + 71f3168 commit a701520

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

Makefile

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@ run:
2424
@echo "Starting local server…"
2525
perl app.pl daemon
2626

27-
clean:
28-
rm -rf html/*.html html/.*.html html/routine/ html/type/ html/op/ html/language/ html/syntax/ html/images/type-graph* html/js/search.js
27+
clean-html:
28+
rm -rf html/*.html html/.*.html html/routine/ html/type/ html/op/ html/language/ html/syntax/
2929

30+
clean-images:
31+
rm -f html/images/type-graph*
32+
33+
clean-search:
34+
rm html/js/search.js
35+
36+
clean: clean-html clean-images clean-search

doc/HomePage.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ and <a href="/language/faq">FAQs (Frequently Asked Questions)</a>.</p>
5555
You may also be interested in the Perl 6 <a href="https://design.perl6.org">design documents</a>,
5656
which are in some places more complete than this documentation, but targeted
5757
toward compiler writers rather than users of the language.
58-
Documentation for the different but related <a href="http://perl.org/">Perl 5</a> language
58+
Documentation for the different but related <a href="https://www.perl.org/">Perl 5</a> language
5959
can be found on the <a href="http://perldoc.perl.org/">Perl 5 documentation website</a>.
6060
</p>
6161
=end Html

htmlify.p6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@ sub write-index-files() {
738738
p2h(extract-pod('doc/404.pod'),
739739
pod-path => '404.pod');
740740

741-
# sort prorams index by file name to allow author control of order
741+
# sort programs index by file name to allow author control of order
742742
say 'Writing html/programs.html ...';
743743
spurt 'html/programs.html', p2h(pod-with-title(
744744
'Perl 6 Programs Documentation',

0 commit comments

Comments
 (0)