[Perl/perl5] 5a3cea: Fix an error in `perlvar`: `@+` may have *more* el...

2024-01-02 Thread mkende via perl5-changes
  Branch: refs/heads/blead
  Home:   https://github.com/Perl/perl5
  Commit: 5a3cea7d65b114c26ace15f27a5da4680adcc3f1
  
https://github.com/Perl/perl5/commit/5a3cea7d65b114c26ace15f27a5da4680adcc3f1
  Author: Mathias Kende 
  Date:   2024-01-02 (Tue, 02 Jan 2024)

  Changed paths:
M pod/perlvar.pod

  Log Message:
  ---
  Fix an error in `perlvar`: `@+` may have *more* elements than `@-`.




[Perl/perl5] fabf9d: Fix a wrong sigil used in a perlre example

2023-12-30 Thread mkende via perl5-changes
  Branch: refs/heads/blead
  Home:   https://github.com/Perl/perl5
  Commit: fabf9dc41c2ea5ca42b9756870a01db0c157f77f
  
https://github.com/Perl/perl5/commit/fabf9dc41c2ea5ca42b9756870a01db0c157f77f
  Author: Mathias Kende 
  Date:   2023-12-30 (Sat, 30 Dec 2023)

  Changed paths:
M .mailmap
M AUTHORS
M pod/perlre.pod

  Log Message:
  ---
  Fix a wrong sigil used in a perlre example

In the description of the @^CAPTURE array, an example of demarcated
variable name uses the @ sigil. The $ sigil is probably more correct in
that case and raises less questions when reading this section (although
the @ sigil will give the same result in that case).