Skip to content

Commit 00fafac

Browse files
authored
Merge pull request #1992 from psicobyte/master
Non breaking space inserted in some 'Pod 6' and 'Perl 6'. This fixed …
2 parents cc53265 + fa7bc3e commit 00fafac

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

doc/Language/faq.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Running C<perl6 -v> will display the language version your compiler implements:
3030
=for code :lang<shell>
3131
$ perl6 -v
3232
This is Rakudo version 2017.07 built on MoarVM version 2017.07
33-
implementing Perl 6.c.
33+
implementing Perl 6.c.
3434
3535
X<|v6.d (FAQ)>
3636
=head2 When is v6.d going to be released?

doc/Language/nativecall.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ class MyStruct is repr('CStruct') {
400400
$arr[0] = 0.9e0;
401401
$arr[1] = 0.2e0;
402402
$!arr := $arr;
403-
$!str := 'Perl 6 is fun';
403+
$!str := 'Perl 6 is fun';
404404
$!point := Point.new;
405405
}
406406
}

doc/Language/tables.pod6

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
=begin pod :tag<pod6>
22
3-
=TITLE Pod 6 Tables
3+
=TITLE Pod 6 Tables
44
55
=SUBTITLE The Good, the Bad, and the Ugly
66
77
The official specification for Perl 6 POD tables is located in the
88
Documentation specification here:
99
L<Tables|https://raw.githubusercontent.com/perl6/specs/master/S26-documentation.pod>.
10-
Although Pod 6 specifications are not completely handled properly yet,
10+
Although Pod 6 specifications are not completely handled properly yet,
1111
several projects are ongoing to correct the situation; one such
12-
project is ensuring the proper handling of Pod 6 tables.
12+
project is ensuring the proper handling of Pod 6 tables.
1313
1414
As part of that effort, this document explains the current state of
15-
Pod 6 tables by example: valid tables, invalid tables, and ugly tables
15+
Pod 6 tables by example: valid tables, invalid tables, and ugly tables
1616
(i.e., valid tables that, because of sloppy construction, may result
1717
in something different than the user expects).
1818

doc/Type/Code.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ including L<Methods|/type/Method> and L<Blocks|/type/Block>:
9090
9191
my &learner = {
9292
"It took me $:months months to learn $^lang"
93-
}.assuming: 'Perl 6';
94-
say learner :6months; # OUTPUT: «It took me 6 months to learn Perl 6␤»
93+
}.assuming: 'Perl 6';
94+
say learner :6months; # OUTPUT: «It took me 6 months to learn Perl 6␤»
9595
9696
=head2 method count
9797

doc/Type/IO.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,8 +387,8 @@ will throw. If you wish to ignore such failures, simply use L<run> in non-sink c
387387
388388
To capture output or error you can use the C<:out> or C<:err> arguments respectively:
389389
390-
my $proc = run 'echo', 'Perl 6 is Great!', :out, :err;
391-
$proc.out.slurp(:close).say; # OUTPUT: «Perl 6 is Great!␤»
390+
my $proc = run 'echo', 'Perl 6 is Great!', :out, :err;
391+
$proc.out.slurp(:close).say; # OUTPUT: «Perl 6 is Great!␤»
392392
$proc.err.slurp(:close).say; # OUTPUT: «␤»
393393
394394
See L<Proc|/type/Proc> and L<Proc::Async|/type/Proc::Async> for more details.

doc/Type/Supply.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ phaser is usually a better choice.
281281
quit => -> $ex { say "Supply finished with error $ex" },
282282
);
283283
284-
$s.emit('Perl 6');
284+
$s.emit('Perl 6');
285285
$tap.close; # OUTPUT: «Tap closed␤»
286286
287287
=head2 method interval

0 commit comments

Comments
 (0)