Skip to content

Commit

Permalink
Removing a couple of 404s
Browse files Browse the repository at this point in the history
Mainly related to #561
  • Loading branch information
JJ committed Mar 5, 2018
1 parent ef09dec commit 5d73d9a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/Language/regexes.pod6
Expand Up @@ -146,7 +146,7 @@ can be matched with C<\v>, and C<\s> matches any kind of whitespace.
C<\n> matches a single, logical newline character.
What is considered as a I<single newline character> is defined via the compile time
variable L<$?NL>, and the L<newline pragma|/language/pragmas>.
variable L<$?NL|/language/variables##index-entry-%24%3FNL>, and the L<newline pragma|/language/pragmas>.
Therefore C<\n> is supposed to be able to either match a Unix-like newline "\n"
or a Microsoft Windows style one "\r\n".
Expand Down
2 changes: 1 addition & 1 deletion doc/Type/Num.pod6
Expand Up @@ -39,7 +39,7 @@ to represent:
say atan ∞; # OUTPUT: «1.5707963267949␤»
say -∞ < 42 < ∞; # OUTPUT: «True␤»
Division of an infinity by an infinity results in a L<NaN>:
Division of an infinity by an infinity results in a C<NaN>:
say ∞/∞; # OUTPUT: «NaN␤»
Expand Down
4 changes: 2 additions & 2 deletions htmlify.p6
Expand Up @@ -5,15 +5,15 @@ use v6;
This script isn't in bin/ because it's not meant to be installed.
For syntax highlighting, needs node.js installed.
Please run make init-highlights to automatically pull in the highlighting
Please run C<make init-highlights> to automatically pull in the highlighting
grammar and build the highlighter.
For doc.perl6.org, the build process goes like this:
a cron job on hack.p6c.org as user 'doc.perl6.org' triggers the rebuild.
*/5 * * * * flock -n ~/update.lock -c ./doc/util/update-and-sync > update.log 2>&1
util/update-and-sync is under version control in the perl6/doc repo (same as
C<util/update-and-sync> is under version control in the perl6/doc repo (same as
this file), and it first updates the git repository. If something changed, it
runs htmlify, captures the output, and on success, syncs both the generated
files and the logs. In case of failure, only the logs are synchronized.
Expand Down

0 comments on commit 5d73d9a

Please sign in to comment.