Skip to content

Commit 981a88c

Browse files
committed
Newlines? Tabs? UFOs? Toss 'em
1 parent 5f425ab commit 981a88c

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

doc/Language/faq.pod

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ If you are a Linux or Mac user you probably want to download Rakudo Star and
1919
install via compilation (a simple process) the MoarVM version available from
2020
L<http://rakudo.org/downloads/star/|http://rakudo.org/downloads/star>.
2121
22-
Or there is an official rakudo star docker image at
23-
L<https://hub.docker.com/_/rakudo-star/>
22+
Or there is an official rakudo star docker image at
23+
L<https://hub.docker.com/_/rakudo-star/>
2424
2525
If you are a Windows 32 or 64 bit user then Rakudo Star binaries are also
26-
available at the rakudo site. You will need Windows Git to use panda.
26+
available at the rakudo site. You will need Windows Git to use panda.
2727
2828
There should be Linux and Mac binaries available shortly from vendors and third
29-
parties. Although vendor versions may be outdated.
29+
parties. Although vendor versions may be outdated.
3030
3131
=head2 As an intermediate to advanced user I want to track Rakudo development.
3232
@@ -37,7 +37,7 @@ Perl 5's perlbrew and the equivalent Python and Ruby tools.
3737
3838
The most reliable information is to be found either under the perl6.org domains or directly linked from it.
3939
40-
L<http://www.perl6.org/documentation/|http://www.perl6.org/documentation/> with
40+
L<http://www.perl6.org/documentation/|http://www.perl6.org/documentation/> with
4141
L<http://doc.perl6.org/|http://doc.perl6.org/> as the canonical technical reference.
4242
4343
There is much good recent material on Youtube but be careful to check any dates
@@ -61,7 +61,7 @@ See L<S99|http://design.perl6.org/S99.html>
6161
6262
See the pod with the 5to6- prefix under L<http://doc.perl6.org/language.html|http://doc.perl6.org/language.html>
6363
64-
=head1 Modules
64+
=head1 Modules
6565
6666
=head2 Is there a CPAN for Perl 6?
6767
@@ -85,7 +85,7 @@ L<Nativecall|http://docs.perl6.org/language/nativecall> makes this particularly
8585
=head2 Nativecall can't find libfoo.so and I only have libfoo.so.1.2!
8686
8787
This is commonly seen on Debian-like systems. You need to install "libfoo-dev"
88-
to set a sym link for the missing file.
88+
to set a sym link for the missing file.
8989
9090
=head2 Where have all the traditional UNIX library functions gone?
9191
@@ -123,7 +123,7 @@ be done on Debian-ish systems by "apt-get install rlwrap".
123123
124124
=head2 Why is the Rakudo compiler sometimes more apologetic?
125125
126-
If SORRY! is present in the output the error is a compile time error
126+
If SORRY! is present in the output the error is a compile time error
127127
otherwise it's runtime.
128128
129129
Example:
@@ -138,7 +138,7 @@ Example:
138138
L<Any|type/Any> is a top level class used as a default superclass for new
139139
classes. It is often seen in a context where a variable has been defined but
140140
not assigned where it loosely resembles the undef or null values in other
141-
languages.
141+
languages.
142142
143143
Example:
144144
@@ -187,7 +187,7 @@ which stands for "definite":
187187
188188
my Int:D $x = 42;
189189
$x = Int; # dies with:
190-
# Type check failed in assignment to $x;
190+
# Type check failed in assignment to $x;
191191
# expected Int:D but got Int
192192
193193
Likewise C<:U> constrains to undefined values, that is, type objects.
@@ -204,7 +204,7 @@ Example:
204204
return $a + $b;
205205
}
206206
207-
foo(2,3.1)
207+
foo(2,3.1)
208208
# ===SORRY!=== ... Calling foo(Int, Rat) will never work with declared signature (Int $a, Int $b --> Int)
209209
210210
=head2 How can I extract the values from a Junction?

0 commit comments

Comments
 (0)