Skip to content

Commit

Permalink
Fix internal code reference documentation for language version
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Oct 4, 2019
1 parent 18ff905 commit 586b9f2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/core.c/Array.pm6
Expand Up @@ -1371,6 +1371,6 @@ my class Array { # declared in BOOTSTRAP
}
multi method WHICH(Array:D: --> ObjAt:D) { self.Mu::WHICH }

#=============== class Array is closed in src/core/TypedArray.pm6 ==============
#=============== class Array is closed in src/core.c/TypedArray.pm6 ============

# vim: ft=perl6 expandtab sw=4
2 changes: 1 addition & 1 deletion src/core.c/Encoding/Registry.pm6
Expand Up @@ -8,7 +8,7 @@ my class Encoding::Registry {

BEGIN {
my $lookup := nqp::bindattr(%lookup,Map,'$!storage',nqp::hash);
### If updating encodings here, also update src/core/Rakudo/Internals.pm6
### If updating encodings here, also update src/core.c/Rakudo/Internals.pm6
my $encodings := nqp::list(
nqp::list('utf8', 'utf-8'),
nqp::list('utf8-c8', 'utf8c8', 'utf-8-c8'),
Expand Down
2 changes: 1 addition & 1 deletion src/core.c/Rakudo/Internals.pm6
Expand Up @@ -273,7 +273,7 @@ my class Rakudo::Internals {
Nil
}
# Fast mapping for identicals
### If updating encodings here, also update src/core/Encoding/Registry.pm6
### If updating encodings here, also update src/core.c/Encoding/Registry.pm6
my $encodings := nqp::hash(
# utf8
'utf8', 'utf8',
Expand Down
2 changes: 1 addition & 1 deletion src/core.c/Str.pm6
Expand Up @@ -3053,7 +3053,7 @@ multi sub infix:<~>(Any:D \a, Str:D \b --> Str:D) {
multi sub infix:<~>(Str:D \a, Any:D \b --> Str:D) {
nqp::p6box_s(nqp::concat(nqp::unbox_s(a), nqp::unbox_s(b.Stringy)))
}
# Any/Any candidate in src/core/Stringy.pm6
# Any/Any candidate in src/core.c/Stringy.pm6

multi sub infix:<~>(str @args --> str) { nqp::join('',@args) }
multi sub infix:<~>(@args) { @args.join }
Expand Down
2 changes: 1 addition & 1 deletion src/core.c/TypedArray.pm6
Expand Up @@ -125,6 +125,6 @@
}
}

#========== closed down the Array class started in src/core/Array.pm6 ==========
#========== closed down the Array class started in src/core.c/Array.pm6 =======

# vim: ft=perl6 expandtab sw=4

0 comments on commit 586b9f2

Please sign in to comment.