Skip to content

Commit d9c30f9

Browse files
committed
Solved conflict
2 parents df5d7ae + ee34834 commit d9c30f9

File tree

16 files changed

+378
-935
lines changed

16 files changed

+378
-935
lines changed

assets/sass/style.scss

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ img, svg {
7171
}
7272

7373
table.pod-table tr:nth-child(odd) {
74-
background-color: #f8f8f8;
74+
background-color: rgba(0, 0, 0, 0.031373);
7575
}
7676
table.pod-table tr:nth-child(even) {
7777
background-color: none;
@@ -320,11 +320,9 @@ td, th {
320320
margin: 2em auto;
321321
overflow: hidden;
322322
max-width: 800px;
323+
min-height: 220px;
323324
background: #FFF;
324-
background-repeat: no-repeat;
325-
background-position: right 2em top 2em;
326-
background-image: url(/images/Camelia-faded.svg);
327-
325+
328326
dt {
329327
font-weight: bold;
330328
margin-bottom: 0.2em;
@@ -361,6 +359,12 @@ td, th {
361359
padding-top: 0.25em;
362360
}
363361
}
362+
#content:not(.content_HomePage) {
363+
background-repeat: no-repeat;
364+
background-position: right 2rem top 2rem;
365+
background-size: 243px;
366+
background-image: url(/images/Camelia-faded.svg);
367+
}
364368

365369
@media (min-width: 110em) {
366370
#content {

doc/HomePage.pod6

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
=begin Html
2-
<img style="float: right; margin: 0 0 2em 2em" src="/images/camelia.png" alt="" id="home_logo"/>
2+
<img style="float: right; margin: 0 0 1em 1em"
3+
width=261 src="/images/Camelia.svg" alt="" id="home_logo"/>
34
Welcome to the official documentation of the <a href="https://perl6.org">Perl 6</a>
45
programming language!
56
Besides online browsing and searching, you can also

doc/Language/faq.pod6

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -67,18 +67,23 @@ X<|rakudobrew (FAQ)>
6767
=head2 As an advanced user I want to track Rakudo development.
6868
6969
An option is to clone L<the repository|https://github.com/rakudo/rakudo> and
70-
L<build from source|https://github.com/zoffixznet/r#table-of-contents>.
70+
build it. This will install work in progress which is minimally-tested and
71+
may contain severe bugs. If you're interested in contributing to Rakudo
72+
Perl 6 compiler, you may find
73+
L<Z-Script helper tool|https://github.com/zoffixznet/z> useful.
7174
72-
This will install work in progress which isn't necessarily fully functional.
7375
To install the last official monthly release check out the tag visible at
7476
L<https://raw.githubusercontent.com/rakudo/rakudo/master/VERSION>
77+
or set up L<a helper command|https://github.com/zoffixznet/r#table-of-contents>.
7578
7679
Some users choose to use L<rakudobrew|https://github.com/tadzik/rakudobrew>,
7780
which allows installation of multiple versions of rakudo. Be sure to L<read its
78-
documentation|https://github.com/tadzik/rakudobrew#making-new-scripts-available>
81+
documentation|https://github.com/tadzik/rakudobrew#making-new-scripts-available>.
7982
80-
In either case you will probably need to also install zef and p6doc from
81-
the ecosystem.
83+
In either case you will probably need to also install
84+
L«C<zef>|https://modules.perl6.org/dist/zef:github» and
85+
L«C<p6doc>|https://modules.perl6.org/dist/p6doc:github» from the
86+
L<ecosystem|http://modules.perl6.org/>.
8287
8388
=head2 Where can I find good documentation on Perl 6?
8489
@@ -143,11 +148,6 @@ L«C<zef> module installer|https://github.com/ugexe/zef»
143148
automatically check for latest versions of a module on CPAN as well as our
144149
L<GitHub-based ecosystem|https://github.com/perl6/ecosystem/>.
145150
146-
Viewing of modules available CPAN will be implemented soon on
147-
L<modules.perl6.org website|https://modules.perl6.org/> (temporarily, it's
148-
available as a
149-
L<raw JSON file|https://github.com/ugexe/Perl6-ecosystems/blob/master/cpan.json>
150-
151151
X<|p6doc (FAQ)> X<|perldoc (FAQ)>
152152
=head2 Is there a perldoc (command line documentation viewer) for Perl 6?
153153

doc/Language/module-packages.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ focuses on use of the C<module> declarator.
1414
Modules, like classes and grammars, are a kind of
1515
L<package|/language/packages>. Module objects are instances of the
1616
C<ModuleHOW> metaclass; this provides certain capabilities useful
17-
for namespacing, versioning, delegation and data encapsulation (see
17+
for creating namespaces, versioning, delegation and data encapsulation (see
1818
also L<class|/syntax/class> and L<role|/syntax/role>).
1919
2020
To create a module, use the C<module> declarator:

doc/Type/Signature.pod6

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,11 @@ be omitted.
452452
foo "2016-12-01";
453453
# OUTPUT: «Date␤2016-12-01␤»
454454
455+
The coercion is performed by calling the method with the name of the type
456+
to coerce to, if it exists (e.g. C<Foo(Bar)> coercer, would call method C<Foo>).
457+
The method is assumed to return the correct type—no additional checks on
458+
the result are currently performed.
459+
455460
=head2 X<Slurpy (A.K.A. Variadic) Parameters|parameter,*@;parameter,*%,slurpy argument (Signature)>
456461
457462
A function is X<variadic> if it can take a varying number of arguments; that is,

0 commit comments

Comments
 (0)