Skip to content

Commit d247077

Browse files
committed
s/P5/perl 5/
1 parent 69f6d32 commit d247077

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

docs/appendix-a-index.txt

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ okt/dec/hex range, alternate syntax without the zero is preferred
418418
first positional submatch, there is **`$1`**, **`$2`**, ... too
419419
(don't stops at **`$9`** like Perl 5), alias to
420420
[**`$()[0]`**](#round-brackets-var) and
421-
[**`$/[0]`**](#slash-var), P5s $0 is
421+
[**`$/[0]`**](#slash-var), Perl 5: *\$0* is
422422
[**\$\*EXECUTABLE\_NAME**](#EXECUTABLE-NAME-global-var)
423423

424424
<a id="colon"/><a id="colon-adverb"/>
@@ -963,12 +963,12 @@ second block/expression, if first do succeed, see also:
963963

964964
<a id="anon"/>
965965
**anon**
966-
*[«scope declarator»](appendix-b-grouped.html#scope-declarator)* &mdash
966+
*[«scope declarator»](appendix-b-grouped.html#scope-declarator)* &mdash;
967967
introduces names that aren't to be stored anywhere (anonymous)
968968

969969
<a id="Any"/><a id="Any-type"/>
970970
**Any**
971-
*[«undefined value type»](appendix-b-grouped.html#undefined-types)* &mdash
971+
*[«undefined value type»](appendix-b-grouped.html#undefined-types)* &mdash;
972972
Perl 6 object (default *[routine](appendix-g-glossary.html#routine)*
973973
*[parameter](appendix-g-glossary.html#parameter)* type, excludes
974974
*[junctions](appendix-g-glossary.html#junction)*)
@@ -984,12 +984,12 @@ following list) is true in bool context, see also:
984984
<a id="ARGFILES-global-var"/>
985985
**$\*ARGFILES**
986986
*[«special var»](appendix-b-grouped.html#global-variables)* &mdash;
987-
magic command-line input handle, is ARGV in P5
987+
magic command-line input handle, in Perl 5: *ARGV*
988988

989989
<a id="ARGS-global-var"/>
990990
**@\*ARGS**
991991
*[«special var»](appendix-b-grouped.html#global-variables)* &mdash;
992-
arguments (parameter) to a program (script), is @ARGV in P5
992+
arguments (parameter) to a program (script), in Perl 5: *@ARGV*
993993

994994
<a id="args"/>
995995
**args**
@@ -1180,7 +1180,7 @@ raw binary data
11801180
<a id="bytes"/>
11811181
**bytes**
11821182
*«string method»* &mdash;
1183-
number of bytes (a sort of P5's *length*)
1183+
number of bytes (a sort of Perl 5's *length*)
11841184

11851185
<a id="bytes-modifier"/>
11861186
**:bytes**
@@ -1773,7 +1773,7 @@ A mapping of Enums with no duplicate keys
17731773
<a id="ENV-global-var"/>
17741774
**%\*ENV**
17751775
*[«special var»](appendix-b-grouped.html#global-variables)* &mdash;
1776-
environment variables (of the shell), is *%ENV* in P5
1776+
environment variables (of the shell), in Perl 5: *%ENV*
17771777

17781778
<a id="eq"/><a id="eq-op"/>
17791779
**eq**
@@ -1943,7 +1943,7 @@ tests **[$\_](#context-var)**
19431943
against two values, flip flop operator in the style of awk, can
19441944
test the right operand and become **[False](#False)**
19451945
on the same evaluation it became **[True](#True)**
1946-
in P5 .. in scalar context
1946+
in Perl 5 *..* in scalar context
19471947

19481948
<a id="fff"/><a id="fff-op"/>
19491949
**[fff](tablet-4-operators.html#flipflop)**
@@ -1953,7 +1953,8 @@ against two values, flip flop operator in the style of sed, after
19531953
became **[True](#True)**
19541954
(**[$\_](#context-op)** is larger then left value),
19551955
right side will be tested during next loop
1956-
*[iteration](appendix-g-glossary.html#interation)*, in P5 *...* in scalar context
1956+
*[iteration](appendix-g-glossary.html#interation)*, in Perl 5 *...* in
1957+
*[scalar context](appendix-g-glossary.html#scalar-contex)*
19571958

19581959
<a id="FILE-compiler-var"/>
19591960
**$?FILE**
@@ -2316,12 +2317,12 @@ just import definitions from an already loaded module (see
23162317
**\$\*IN**
23172318
*[«special var»](appendix-b-grouped.html#global-variables)* &mdash;
23182319
file handle for thestandard input (command line mostly), see also
2319-
**[$\*OUT](#OUT-global-var)**, is STDIN in P5
2320+
**[$\*OUT](#OUT-global-var)**, in Perl 5: *STDIN*
23202321

23212322
<a id="INC-global-var"/>
23222323
**\@\*INC**
23232324
*[«special var»](appendix-b-grouped.html#global-variables)* &mdash;
2324-
include pathes (but not for standard library modules), is @INC in P5
2325+
include pathes (but not for standard library modules), in Perl 5: *@INC*
23252326

23262327
<a id="index"/>
23272328
**index** *(string method)* &mdash;
@@ -2583,7 +2584,7 @@ operator in *[string
25832584
context](tablet-4-operators.html#string-context)*,
25842585
leg stands for lower/equal/greater, **[cmp](#cmp)**
25852586
is the more general form, **[<=\>](#spaceship-op)**
2586-
does same in [numerical context](#numerical-context), is *cmp* in P5
2587+
does same in [numerical context](#numerical-context), in Perl 5: *cmp*
25872588

25882589
<a id="let"/>
25892590
**let** &mdash;
@@ -2984,7 +2985,7 @@ introduces **[package](#package)**-scoped names for variables and
29842985
**\$\*OUT**
29852986
*[«special var»](appendix-b-grouped.html#global-variables)* &mdash;
29862987
file handle for standard output (command line mostly), see also
2987-
**[$\*IN](#IN-global-var)**, is STDOUT in P5
2988+
**[$\*IN](#IN-global-var)**, in Perl 5: *STDOUT*
29882989

29892990
<a id="ov-modifier"/>
29902991
**:ov** *[«regex modifier»](appendix-b-grouped.html#regex-modifier)* &mdash;
@@ -3924,7 +3925,7 @@ a symbol table hash (package, module, class, lexpad, etc)
39243925
**stat**
39253926
*[«test method»](appendix-b-grouped.html#test-methods)* &mdash;
39263927
available information about a file or link
3927-
(call `stat :link` as former lstat)
3928+
(call `stat :link` instead of Perl 5: *lstat*)
39283929

39293930
<a id="state"/>
39303931
**state**

0 commit comments

Comments
 (0)