Skip to content

Commit b3e0f89

Browse files
committed
space out N<> - problematic with perl6 --doc
1 parent 0e35582 commit b3e0f89

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

doc/Language/classtut.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -624,11 +624,11 @@ C<$o>, which tells us the exact type of C<$o>: in this case C<Programmer>.
624624
625625
C<$o.perl> returns a string that can be executed as Perl code, and
626626
reproduces the original object C<$o>. While this does not work perfectly in
627-
all casesN<For example closures cannot easily be reproduced this way; if you
627+
all cases, it is very useful for debugging simple objects.
628+
N<For example closures cannot easily be reproduced this way; if you
628629
don't know what a closure is don't worry. Also current implementations have
629630
problems with dumping cyclic data structures this way, but they are expected
630-
to be handled correctly by C<.perl> at some point.>, it is very useful for
631-
debugging simple objects.
631+
to be handled correctly by C<.perl> at some point.>
632632
633633
C<$o.^methods(:local)> produces a list of L<Method|/type/Method>s that can be
634634
called on C<$o>. The C<:local> named argument limits the returned methods to

doc/Language/grammars.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ methods of regular code.
2323
The main ingredient of grammars is named L<regexes|/language/regexes>.
2424
While the syntax of L<Perl 6 Regexes|/language/regexes> is outside the scope
2525
of this document, I<named> regexes have a special syntax, similar to
26-
subroutine definitions:N<In fact, named regexes can even take extra
26+
subroutine definitions: N<In fact, named regexes can even take extra
2727
arguments, using the same syntax as subroutine parameter lists>
2828
2929
=begin code :allow<B>

doc/Language/modules.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
=head1 Creating and Using Modules
88
9-
A module is usually a source file or set of source filesN<Technically
9+
A module is usually a source file or set of source files N<Technically
1010
a module is a set of I<compunits> which are usually files but could
1111
come from anywhere as long as there is a I<compunit repository> that
1212
can provide it. See L<S11|https://design.perl6.org/S11.html>.> that
@@ -26,7 +26,7 @@ have the same structure as any distribution in the Perl family of languages:
2626
there is a main project directory containing a C<README> and a C<LICENSE> file,
2727
a C<lib> directory for the source filesE<mdash>which may be individually
2828
referred to as modules and/or may themselves define modules with the C<module>
29-
keywordN<As L<synopsis S11|https://design.perl6.org/S11.html#Units> says:
29+
keyword N<As L<synopsis S11|https://design.perl6.org/S11.html#Units> says:
3030
Confusing? Yes it is.>, a C<t> directory for tests, and possibly a C<bin>
3131
directory for executable programs and scripts.
3232

0 commit comments

Comments
 (0)