chiark / gitweb /
Remove documentation for annotations
authorJeff Ober <jober@ziprecruiter.com>
Fri, 17 Jan 2020 17:25:48 +0000 (12:25 -0500)
committerJeff Ober <jober@ziprecruiter.com>
Fri, 17 Jan 2020 17:25:48 +0000 (12:25 -0500)
README.pod
lib/TOML/Tiny.pm

index 8abc7989b1a18795f87de5887a704f4d0b0f91a2..58f45cee9bec14a826b9368b468304ab1f312a20 100644 (file)
@@ -130,11 +130,6 @@ wish to require strictly typed arrays (for C<TOML>'s definition of "type",
 anyway), C<strict_arrays> will produce an error when encountering arrays with
 heterogenous types.
 
-=item annotated
-
-This is an internal flag to produce and expect C<JSON> compliant with
-L<BurntSushi's TOML test suite|https://github.com/BurntSushi/toml-test>.
-
 =back
 
 =head2 decode
index 68983d2c5a4b66f6b8fcac78945131ed1e3912d7..a2b89553461246134ceca00564c628e6d868836c 100644 (file)
@@ -51,7 +51,6 @@ sub encode {
 sub decode {
   my ($self, $data) = @_;
   TOML::Tiny::Writer::to_toml($data,
-    annotated     => $self->{annotated},
     strict_arrays => $self->{strict_arrays},
   );
 }
@@ -188,11 +187,6 @@ wish to require strictly typed arrays (for C<TOML>'s definition of "type",
 anyway), C<strict_arrays> will produce an error when encountering arrays with
 heterogenous types.
 
-=item annotated
-
-This is an internal flag to produce and expect C<JSON> compliant with
-L<BurntSushi's TOML test suite|https://github.com/BurntSushi/toml-test>.
-
 =back
 
 =head2 decode