chiark / gitweb /
Fix POD in TOML::Tiny::Grammar
authorJeff Ober <jober@ziprecruiter.com>
Tue, 21 Jan 2020 17:17:53 +0000 (12:17 -0500)
committerJeff Ober <jober@ziprecruiter.com>
Tue, 21 Jan 2020 17:17:53 +0000 (12:17 -0500)
Changes
README.pod
lib/TOML/Tiny.pm
lib/TOML/Tiny/Grammar.pm

diff --git a/Changes b/Changes
index 5e874ade531cf786e474a70dbcd93d2390f213df..61ffaec02458a27e6659c553e62b639b8ceb2e41 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,4 +1,5 @@
 {{$NEXT}}
+-POD fixes for TOML::Tiny::Grammar
 
 0.04 2020-01-21
 -Remove superfluous dependency on DateTime::Format::RFC3339, which was only
index 45bbaf09e7673c24216a404786553894e24ecb83..b65a11d55ad2a73ef57bdec51dcf3f3755f3adfd 100644 (file)
@@ -8,7 +8,7 @@ TOML::Tiny - a minimal, pure perl TOML parser and serializer
 
 =head1 VERSION
 
-version 0.04
+version 0.05
 
 =head1 SYNOPSIS
 
@@ -219,6 +219,16 @@ terminating with a backslash correctly in multilne strings:
 C<TOML::Tiny> includes support for integers specified in binary, octal or hex
 as well as the special float values C<inf> and C<nan>.
 
+=head1 SEE ALSO
+
+=over
+
+=item L<TOML::Tiny::Grammar>
+
+Regexp scraps used by C<TOML::Tiny> to parse TOML source.
+
+=back
+
 =head1 ACKNOWLEDGEMENTS
 
 Thanks to L<ZipRecruiter|https://www.ziprecruiter.com> for encouraging their
index 9d9d521f4570475a3ec312c2019e0acd179a260e..7f3a4937023413be80c8d28dc92ccfe641e59f90 100644 (file)
@@ -276,6 +276,16 @@ terminating with a backslash correctly in multilne strings:
 C<TOML::Tiny> includes support for integers specified in binary, octal or hex
 as well as the special float values C<inf> and C<nan>.
 
+=head1 SEE ALSO
+
+=over
+
+=item L<TOML::Tiny::Grammar>
+
+Regexp scraps used by C<TOML::Tiny> to parse TOML source.
+
+=back
+
 =head1 ACKNOWLEDGEMENTS
 
 Thanks to L<ZipRecruiter|https://www.ziprecruiter.com> for encouraging their
index 28dab5908ccf041d7216dfbb899267a1726f7260..45df3ec415ef7c0dd4e813e81b56c9205544a0a9 100644 (file)
@@ -1,5 +1,5 @@
 package TOML::Tiny::Grammar;
-# ABSTRACT: exports regex definition of TOML grammar
+# ABSTRACT: exports regex definitions used to parse TOML source
 
 use strict;
 use warnings;
@@ -148,36 +148,57 @@ Exports various regexex for parsing TOML source.
 =head1 PATTERNS
 
 =head2 White space and ignorables
+
 =head3 $WS
+
 =head3 $CRLF
+
 =head3 $EOL
+
 =head3 $Comment
 
 =head2 Keys
+
 =head3 $BareKey
+
 =head3 $QuotedKey
+
 =head3 $SimpleKey
+
 =head3 $DottedKey
+
 =head3 $Key
 
 =head2 Values
+
 =head3 $Boolean
 
 =head3 $Escape
+
 =head3 $StringLiteral
+
 =head3 $MultiLineStringLiteral
+
 =head3 $BasicString
+
 =head3 $MultiLineString
+
 =head3 $String
 
 =head3 $Date
+
 =head3 $Time
+
 =head3 $DateTime
 
 =head3 $Hex
+
 =head3 $Oct
+
 =head3 $Bin
+
 =head3 $Dec
+
 =head3 $Integer
 
 =head3 $Float