1
1
p6doc -- an attempt to write something like 'perldoc' for Perl 6
2
2
3
- A HTML version of this documenation can be found at http://doc.perl6.org/
3
+ An HTML version of this documentation can be found at http://doc.perl6.org/
4
4
5
5
With a Rakudo 'perl6' executable in PATH, try
6
6
@@ -25,7 +25,7 @@ Here are some ways to help us:
25
25
* add usage examples to existing documentation
26
26
* proofread and correct the documentation
27
27
28
- The file WANTED has a list of particular documents that is known to be
28
+ The file WANTED has a list of particular documents that are known to be
29
29
missing.
30
30
31
31
--------
@@ -76,12 +76,13 @@ Wishlist stuff:
76
76
the operator. ("p6doc '%%'" returns the documentation for
77
77
&infix:<%%>.)
78
78
79
- * Perl6 implementations could embed P<...> tags in their source
80
- code that would then inline the corresponding entry from p6doc.
81
- This would enable things like "&say.WHY" to (dynamically!)
82
- retrieve the documentation string from p6doc, without having
79
+ * Perl6 implementations could embed P<...> tags in their source
80
+ code that would then inline the corresponding entry from p6doc.
81
+ This would enable things like "&say.WHY" to (dynamically!)
82
+ retrieve the documentation string from p6doc, without having
83
83
to duplicate the documentation in the CORE.setting sources
84
84
or to encode the documentation into the binaries.
85
+
85
86
Example:
86
87
87
88
# In Rakudo's src/core/IO.pm:
@@ -95,4 +96,3 @@ Wishlist stuff:
95
96
#= P<p6doc/¬e>
96
97
sub note(|$) { ... }
97
98
98
-
0 commit comments