Skip to content

Commit 3fc5a32

Browse files
committed
Update links
1 parent 4ce188c commit 3fc5a32

22 files changed

+39
-39
lines changed

doc/HomePage.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ main Raku website.</p>
5858
5959
<p>
6060
Raku compiler developers may also be interested in
61-
<a href="https://github.com/perl6/roast">The Raku Specification</a>.
61+
<a href="https://github.com/Raku/roast">The Raku Specification</a>.
6262
</p>
6363
6464
<p>Part of this official documentation has been translated into Chinese. Here's the <a href='https://github.com/ohmycloud/perl6doc-zh/blob/master/index.adoc'>index to the pages that have been translated</a>.</p>

doc/Language/community.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ of Perl and of the community." - Larry Wall (circa 2000)
1414
the garment, making the tear worse. Neither do people pour new wine into old wineskins.
1515
If they do, the skins will burst; the wine will run out and the wineskins will be ruined.
1616
No, they pour new wine into new wineskins, and both are preserved.'" - Larry Wall
17-
(L<2019|https://github.com/perl6/problem-solving/pull/89#pullrequestreview-300789072>)
17+
(L<2019|https://github.com/Raku/problem-solving/pull/89#pullrequestreview-300789072>)
1818
1919
=head1 The Raku community
2020
@@ -97,11 +97,11 @@ want, the third is the code to run.
9797
=end item
9898
9999
=begin item
100-
B<Geth> (L<details|https://github.com/perl6/geth>)
100+
B<Geth> (L<details|https://github.com/Raku/geth>)
101101
102102
Announces commits made to various projects relevant to Raku, such
103103
as implementations of Raku and some of the
104-
L<repositories owned by Raku|https://github.com/perl6/>.
104+
L<repositories owned by Raku|https://github.com/Raku/>.
105105
=end item
106106
107107
=begin item

doc/Language/faq.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ X<|Specification (FAQ)>
150150
=head2 What is the Raku specification?
151151
152152
The specification refers to the official test suite for Raku. It's called
153-
L<C<roast>|https://github.com/perl6/roast> and is hosted on github. Any
153+
L<C<roast>|https://github.com/Raku/roast> and is hosted on github. Any
154154
compiler that passes the tests is deemed to implement that version of the
155155
Raku specification.
156156

doc/Language/glossary.pod6

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ X<|Mayspec>
710710
=head1 Mayspec
711711
712712
Stands for "Maybe Specification". Usually refers to existing tests in the
713-
L<language specification|https://github.com/perl6/roast/>. The speaker
713+
L<language specification|https://github.com/Raku/roast/>. The speaker
714714
is indicating they did not check whether the test is a spectest or a propspec
715715
test; i.e., whether the test is included in a released language specification
716716
or is a new test, proposed for the next version of the spec.
@@ -878,7 +878,7 @@ X<|Propspec>
878878
=head1 Propspec
879879
880880
Stands for "Proposed Specification". Usually refers to existing tests in the
881-
L<language specification|https://github.com/perl6/roast/> that are proposed
881+
L<language specification|https://github.com/Raku/roast/> that are proposed
882882
for inclusion in the next release.
883883
884884
X<|Pull request>
@@ -966,7 +966,7 @@ X<|roast>
966966
=head1 roast
967967
968968
The Raku L<specification tests|#test suite>, which live here:
969-
L<https://github.com/perl6/roast/>. Originally developed for L<#pugs>,
969+
L<https://github.com/Raku/roast/>. Originally developed for L<#pugs>,
970970
it now serves all Raku implementations. Why roast? It's the
971971
B<r>epository B<o>f B<a>ll B<s>pec B<t>ests.
972972
@@ -999,7 +999,7 @@ X<|SAP>
999999
=head1 SAP
10001000
10011001
Stands for "Specification APpendices". The
1002-
L<SAP|https://github.com/perl6/roast/tree/master/APPENDICES> includes
1002+
L<SAP|https://github.com/Raku/roast/tree/master/APPENDICES> includes
10031003
optional tests that implementations may choose to follow, but don't
10041004
necessarily have to.
10051005

doc/Language/nativecall.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -876,7 +876,7 @@ platforms.
876876
=head2 PostgreSQL
877877
878878
The PostgreSQL examples in
879-
L<DBIish|https://github.com/perl6/DBIish/blob/master/examples/pg.p6> make use of
879+
L<DBIish|https://github.com/raku-community-modules/DBIish/blob/master/examples/pg.p6> make use of
880880
the NativeCall library and C<is native> to use the native C<_putenv> function
881881
call in Windows.
882882
@@ -888,7 +888,7 @@ L<MySQL APT repository|https://dev.mysql.com/downloads/repo/apt/> instead of the
888888
default repository.
889889
890890
To use the MySQL example in
891-
L<DBIish|https://github.com/perl6/DBIish/blob/master/examples/mysql.p6>, you'll
891+
L<DBIish|https://github.com/raku-community-modules/DBIish/blob/master/examples/mysql.p6>, you'll
892892
need to install MySQL server locally; on Debian-esque systems
893893
it can be installed with something like:
894894

doc/Language/objects.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ A method call is the preferred approach to adding computation and
369369
logic to the update of an attribute. Many modern languages can update
370370
an attribute by overloading assignment with a “setter” method. While
371371
Raku can overload the assignment operator for this purpose with a
372-
L<C<Proxy>|https://github.com/perl6/roast/blob/master/S12-attributes/mutators.t>
372+
L<C<Proxy>|https://github.com/Raku/roast/blob/master/S12-attributes/mutators.t>
373373
object, overloading assignment to set attributes with complex logic is
374374
currently discouraged as
375375
L<weaker object oriented design|https://6guts.wordpress.com/2016/11/25/perl-6-is-biased-towards-mutators-being-really-simple-thats-a-good-thing/>.

doc/Language/performance.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ can hack on the compiler, including optimizing any of the large body of existing
237237
high-level code that impacts the speed of your code (and everyone else's).
238238
239239
=item Most of the rest of the compiler is written in a small language called
240-
L<NQP|https://github.com/perl6/nqp> that's basically a subset of Raku. If you
240+
L<NQP|https://github.com/Raku/nqp> that's basically a subset of Raku. If you
241241
can write Raku, you can fairly easily learn to use and improve the mid-level
242242
NQP code too, at least from a pure language point of view. To dig into NQP and
243243
Rakudo's guts, start with

doc/Language/pod.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,7 @@ because you "OR" the "cache".
781781
=head2 HTML
782782
783783
In order to generate HTML from Pod, you need the
784-
L<Pod::To::HTML module|https://github.com/perl6/Pod-To-HTML>.
784+
L<Pod::To::HTML module|https://github.com/Raku/Pod-To-HTML>.
785785
786786
If it is not already installed, install it by running the following command:
787787
C<zef install Pod::To::HTML>

doc/Language/pragmas.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ X<|nqp, pragma>
226226
Use at your own risk.
227227
228228
This is a Rakudo-specific pragma. With it, Rakudo provides access to the
229-
L<nqp opcodes|https://github.com/perl6/nqp/blob/master/docs/ops.markdown>
229+
L<nqp opcodes|https://github.com/Raku/nqp/blob/master/docs/ops.markdown>
230230
in a top level namespace:
231231
232232
use nqp;

doc/Language/quoting.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Strings are usually represented in Raku code using some form of quoting
1010
construct. The most minimalistic of these is C<Q>, usable via the shortcut
1111
C<「…」>, or via C<Q> followed by any pair of delimiters surrounding your
1212
text, including many
13-
L<Unicode pairs|https://github.com/perl6/roast/blob/aa4994a7f6b3f6b450a9d231bebd5fba172439b0/S02-literals/quoting-unicode.t#L49-L65>.
13+
L<Unicode pairs|https://github.com/Raku/roast/blob/aa4994a7f6b3f6b450a9d231bebd5fba172439b0/S02-literals/quoting-unicode.t#L49-L65>.
1414
Most of the time, though, the most you'll need is
1515
C<'…'>
1616
or C<"…">,

0 commit comments

Comments
 (0)