Skip to content

Commit 4992c97

Browse files
committed
Some reflow and grammar changes
1 parent 7075ac4 commit 4992c97

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

doc/Language/pod.pod6

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ Boolean). Also note that "bigints" can be used if required.
6868
For hashes, '$k1, $k2, ...' are keys of type Str and '$v1, $v2, ...'
6969
are values of type String, Int, Number, or Boolean.
7070
71-
Strings are delimited by single or double quotes. Whitespace is insignificant outside
72-
of strings. Hash keys need not be quote-delimited unless they contain
71+
Strings are delimited by single or double quotes. Whitespace is not significant
72+
outside of strings. Hash keys need not be quote-delimited unless they contain
7373
significant whitespace. Strings entered inside angle brackets become lists when
7474
whitespace is used inside the brackets.
7575
@@ -80,9 +80,9 @@ Perl 6 pair notations.
8080
8181
The configuration section may be extended over subsequent lines by
8282
starting those lines with an C<=> in the first (virtual) column followed
83-
by a whitespace character. (NOTE: This feature is not yet completely implemented.
83+
by a whitespace character. N<This feature is not yet completely implemented.
8484
All configuration information currently must be provided on the same
85-
line as the C<=begin> marker line or C<=for name> for paragraph blocks.)
85+
line as the C<=begin> marker line or C<=for name> for paragraph blocks.>
8686
8787
=head2 Paragraph blocks
8888
@@ -122,10 +122,11 @@ sequence of closing brackets.
122122
Blocks starting with C<#|> are attached to the code after them,
123123
and blocks starting with C<#=> are attached to the code before them.
124124
125-
Since declarator blocks are attached to source code, they can be used to document
126-
classes, roles, subroutines etc.
125+
Since declarator blocks are attached to source code, they can be used to
126+
document classes, roles, subroutines and in general any statement or block.
127127
128-
The C<WHY> method can be used on these classes, roles, subroutines etc. to return the attached Pod value.
128+
The C<WHY> method can be used on these classes, roles, subroutines etc. to
129+
return the attached Pod value.
129130
130131
=begin code :skip-test
131132
#| Base class for magicians
@@ -163,7 +164,9 @@ sub search-in-seq( Int $end, Int $number ) {
163164
»
164165
=end code
165166
166-
By using a matched pair of parenthesis constructs such as C<()> or C<«»> the comments can extend multiple lines. This format, however, will not translate to a multi-line display by C<perl6 -doc>.
167+
By using a matched pair of parenthesis constructs such as C<()> or C<«»> the
168+
comments can extend multiple lines. This format, however, will not translate to
169+
a multi-line display by C<perl6 -doc>.
167170
168171
=head1 Block types
169172
@@ -184,8 +187,9 @@ where N is greater than zero (e.g., C<=head1>, C<=head2>, …).
184187
185188
=head2 Ordinary paragraphs
186189
187-
An ordinary paragraph consists of text that is to be formatted into a document at the current level of nesting,
188-
with whitespace squeezed, lines filled, and any special inline mark-up applied.
190+
An ordinary paragraph consists of text that is to be formatted into a document
191+
at the current level of nesting, with whitespace squeezed, lines filled, and any
192+
special inline mark-up applied.
189193
190194
Ordinary paragraphs consist of one or more consecutive lines of text,
191195
each of which starts with a non-whitespace character.

0 commit comments

Comments
 (0)