Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
uncomment pod
Rakudo does not get confused by it these days :-)
  • Loading branch information
moritz committed Dec 13, 2014
1 parent 00c41c2 commit a5c83eb
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions lib/JSON/Tiny.pm
@@ -1,17 +1,17 @@
# =begin Pod
#
# =head1 JSON::Tiny
#
# C<JSON::Tiny> is a minimalistic module that reads and writes JSON.
# It supports strings, numbers, arrays and hashes (no custom objects).
#
# =head1 Synopsis
#
# use JSON::Tiny;
# my $json = to-json([1, 2, "a third item"]);
# my $copy-of-original-data-structure = from-json($json);
#
# =end Pod
=begin pod
=head1 JSON::Tiny
C<JSON::Tiny> is a minimalistic module that reads and writes JSON.
It supports strings, numbers, arrays and hashes (no custom objects).
=head1 Synopsis
use JSON::Tiny;
my $json = to-json([1, 2, "a third item"]);
my $copy-of-original-data-structure = from-json($json);
=end pod

module JSON::Tiny;

Expand Down

0 comments on commit a5c83eb

Please sign in to comment.