Skip to content

Commit 378e2eb

Browse files
Update Util.pm - Docuemntation - Alphabetise function order within POD
Alphabetise function order within POD, currently 'network_contains' is showing between 'punycode_decode' and 'punycode_encode'
1 parent 0fb3adf commit 378e2eb

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

lib/Mojo/Util.pm

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -847,15 +847,6 @@ Monkey patch functions into package.
847847
two => sub { say 'Two!' },
848848
three => sub { say 'Three!' };
849849
850-
=head2 punycode_decode
851-
852-
my $str = punycode_decode $punycode;
853-
854-
Punycode decode string as described in L<RFC 3492|https://tools.ietf.org/html/rfc3492>.
855-
856-
# "bücher"
857-
punycode_decode 'bcher-kva';
858-
859850
=head2 network_contains
860851
861852
my $bool = network_contains $network, $address;
@@ -872,6 +863,15 @@ addresses must be equivalent.
872863
network_contains('10.0.0.0/29', '10.10.10.10');
873864
network_contains('10.10.10.12', '10.10.10.10');
874865
network_contains('fc00::/7', '::1');
866+
867+
=head2 punycode_decode
868+
869+
my $str = punycode_decode $punycode;
870+
871+
Punycode decode string as described in L<RFC 3492|https://tools.ietf.org/html/rfc3492>.
872+
873+
# "bücher"
874+
punycode_decode 'bcher-kva';
875875
876876
=head2 punycode_encode
877877

0 commit comments

Comments
 (0)