Skip to content

Commit c17d628

Browse files
committed
“nom” → “master”
1 parent 752bafa commit c17d628

File tree

8 files changed

+18
-16
lines changed

8 files changed

+18
-16
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ before_install:
4040
- nvm use 7.2.1
4141
install:
4242
- rakudobrew build-zef
43-
- export PATH="$PATH:/$HOME/.rakudobrew/moar-nom/install/share/perl6/site/bin"
43+
- export PATH="$PATH:/$HOME/.rakudobrew/moar-master/install/share/perl6/site/bin"
4444
- travis_retry zef --/tap-harness --force --/test install LWP::Simple
4545
- travis_retry zef --/tap-harness --depsonly install .
4646

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ that adheres to the common style and formatting guidelines.
77

88
Your contributions will be credited in Rakudo release announcement. You name from
99
the commit log will be used. If you'd like to be credited under a different name,
10-
please add it to [CREDITS file](https://github.com/rakudo/rakudo/blob/nom/CREDITS)
10+
please add it to [CREDITS file](https://github.com/rakudo/rakudo/blob/master/CREDITS)
1111

1212
If you have any questions regarding contributing to this project, please ask
1313
in the [#perl6 IRC channel](https://perl6.org/community/irc).

doc/Language/faq.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ L<build from source|https://github.com/zoffixznet/r#table-of-contents>.
6868
6969
This will install work in progress which isn't necessarily fully functional.
7070
To install the last official monthly release check out the tag visible at
71-
L<https://raw.githubusercontent.com/rakudo/rakudo/nom/VERSION>
71+
L<https://raw.githubusercontent.com/rakudo/rakudo/master/VERSION>
7272
7373
Some users choose to use L<rakudobrew|https://github.com/tadzik/rakudobrew>,
7474
which allows installation of multiple versions of rakudo. Be sure to L<read its

doc/Language/modules-core.pod6

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
The Rakudo implementation has a few modules included you may want to use. The following is a
88
list of them, along with links to their source code.
99
10-
=item L«C<CompUnit::Repository::Staging>|https://github.com/rakudo/rakudo/blob/nom/lib/CompUnit/Repository/Staging.pm» Used by distribution build tools
11-
=item L«C<NativeCall>|https://github.com/rakudo/rakudo/blob/nom/lib/NativeCall.pm6» Native Calling Interface (L<docs|https://docs.perl6.org/language/nativecall.html>)
12-
=item L«C<NativeCall::Types>|https://github.com/rakudo/rakudo/blob/nom/lib/NativeCall/Types.pm6» Used by C<NativeCall>
13-
=item L«C<NativeCall::Compiler::GNU>|https://github.com/rakudo/rakudo/blob/nom/lib/NativeCall/Compiler/GNU.pm6» Used by C<NativeCall>
14-
=item L«C<NativeCall::Compiler::MSVC>|https://github.com/rakudo/rakudo/blob/nom/lib/NativeCall/Compiler/MSVC.pm6» Used by C<NativeCall>
15-
=item L«C<Pod::To::Text>|https://github.com/rakudo/rakudo/blob/nom/lib/Pod/To/Text.pm6» Used by several external modules
16-
=item L«C<Test>|https://github.com/rakudo/rakudo/blob/nom/lib/Test.pm6» Test routines (L<docs|/language/testing>)
17-
=item L«C<experimental>|https://github.com/rakudo/rakudo/blob/nom/lib/experimental.pm6»
18-
=item L«C<newline>|https://github.com/rakudo/rakudo/blob/nom/lib/newline.pm6»
10+
=item L«C<CompUnit::Repository::Staging>|https://github.com/rakudo/rakudo/blob/master/lib/CompUnit/Repository/Staging.pm» Used by distribution build tools
11+
=item L«C<NativeCall>|https://github.com/rakudo/rakudo/blob/master/lib/NativeCall.pm6» Native Calling Interface (L<docs|https://docs.perl6.org/language/nativecall.html>)
12+
=item L«C<NativeCall::Types>|https://github.com/rakudo/rakudo/blob/master/lib/NativeCall/Types.pm6» Used by C<NativeCall>
13+
=item L«C<NativeCall::Compiler::GNU>|https://github.com/rakudo/rakudo/blob/master/lib/NativeCall/Compiler/GNU.pm6» Used by C<NativeCall>
14+
=item L«C<NativeCall::Compiler::MSVC>|https://github.com/rakudo/rakudo/blob/master/lib/NativeCall/Compiler/MSVC.pm6» Used by C<NativeCall>
15+
=item L«C<Pod::To::Text>|https://github.com/rakudo/rakudo/blob/master/lib/Pod/To/Text.pm6» Used by several external modules
16+
=item L«C<Test>|https://github.com/rakudo/rakudo/blob/master/lib/Test.pm6» Test routines (L<docs|/language/testing>)
17+
=item L«C<experimental>|https://github.com/rakudo/rakudo/blob/master/lib/experimental.pm6»
18+
=item L«C<newline>|https://github.com/rakudo/rakudo/blob/master/lib/newline.pm6»
1919
2020
=end pod

doc/Language/modules.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ lib
479479
480480
=item Regarding the C<LICENSE> file, if you have no other preference,
481481
you might just use the same one that Rakudo Perl 6 uses. Just
482-
copy/paste the raw form of L<its license|https://github.com/rakudo/rakudo/blob/nom/LICENSE>
482+
copy/paste the raw form of L<its license|https://github.com/rakudo/rakudo/blob/master/LICENSE>
483483
into your own C<LICENSE> file.
484484
485485
=item The license field in META6.json

doc/Language/nativecall.pod6

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,8 @@ exported by the "libc.so.6" library.
543543
=head1 C++ Support
544544
545545
NativeCall offers support to use classes and methods from C++ as shown in
546-
L<https://github.com/rakudo/rakudo/blob/nom/t/04-nativecall/13-cpp-mangling.t> (and its associated C++ file).
546+
L<https://github.com/rakudo/rakudo/blob/master/t/04-nativecall/13-cpp-mangling.t>
547+
(and its associated C++ file).
547548
Note that at the moment it's not as tested and developed as C support.
548549
549550
=head1 Helper Functions

doc/Language/testing.pod6

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ Testing code is an integral part of software development.
99
Tests provide automated, repeatable
1010
verifications of code behaviour, and ensures your code works as expected.
1111
12-
In Perl 6, the L<Test|https://github.com/rakudo/rakudo/blob/nom/lib/Test.pm6> module provides a testing framework similar to the
12+
In Perl 6, the L<Test|https://github.com/rakudo/rakudo/blob/master/lib/Test.pm6>
13+
module provides a testing framework similar to the
1314
Perl 5 L<Test::More|http://perldoc.perl.org/Test/More.html>
1415
module. Therefore, anyone familiar with C<Test::More> (and related modules) should be
1516
comfortable with Perl 6's C<Test> module.

doc/Programs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Source note
1010

1111
The 00-running.pod file in this directory was copied from
1212

13-
https://github.com/rakudo/rakudo/tree/nom/docs
13+
https://github.com/rakudo/rakudo/tree/master/docs
1414

1515
in commit:
1616

0 commit comments

Comments
 (0)