Skip to content

Commit 5d73d9a

Browse files
committed
Removing a couple of 404s
Mainly related to #561
1 parent ef09dec commit 5d73d9a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

doc/Language/regexes.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ can be matched with C<\v>, and C<\s> matches any kind of whitespace.
146146
147147
C<\n> matches a single, logical newline character.
148148
What is considered as a I<single newline character> is defined via the compile time
149-
variable L<$?NL>, and the L<newline pragma|/language/pragmas>.
149+
variable L<$?NL|/language/variables##index-entry-%24%3FNL>, and the L<newline pragma|/language/pragmas>.
150150
Therefore C<\n> is supposed to be able to either match a Unix-like newline "\n"
151151
or a Microsoft Windows style one "\r\n".
152152

doc/Type/Num.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ to represent:
3939
say atan ∞; # OUTPUT: «1.5707963267949␤»
4040
say -∞ < 42 < ∞; # OUTPUT: «True␤»
4141
42-
Division of an infinity by an infinity results in a L<NaN>:
42+
Division of an infinity by an infinity results in a C<NaN>:
4343
4444
say ∞/∞; # OUTPUT: «NaN␤»
4545

htmlify.p6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ use v6;
55
66
This script isn't in bin/ because it's not meant to be installed.
77
For syntax highlighting, needs node.js installed.
8-
Please run make init-highlights to automatically pull in the highlighting
8+
Please run C<make init-highlights> to automatically pull in the highlighting
99
grammar and build the highlighter.
1010
1111
For doc.perl6.org, the build process goes like this:
1212
a cron job on hack.p6c.org as user 'doc.perl6.org' triggers the rebuild.
1313
1414
*/5 * * * * flock -n ~/update.lock -c ./doc/util/update-and-sync > update.log 2>&1
1515
16-
util/update-and-sync is under version control in the perl6/doc repo (same as
16+
C<util/update-and-sync> is under version control in the perl6/doc repo (same as
1717
this file), and it first updates the git repository. If something changed, it
1818
runs htmlify, captures the output, and on success, syncs both the generated
1919
files and the logs. In case of failure, only the logs are synchronized.

0 commit comments

Comments
 (0)