Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Revision history for {{$dist->name}}

{{$NEXT}}
- I somehow forgot how to write POD and had to fix some (gh#5)

0.03 2024-12-14 18:14:10 -0700
- Corrected merge errors in 0.02
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,17 +91,17 @@ my $bool = $writer->unchanged;

Returns:

- \`undef\`
- `undef`

If </update\_file> hasn't been called yet.
If ["update\_file"](#update_file) hasn't been called yet.

- \`0\`
- `0`

If the last call to </update\_file> modified the file.
If the last call to ["update\_file"](#update_file) modified the file.

- \`1\`
- `1`

If the last call to </update\_file> did not modify the file.
If the last call to ["update\_file"](#update_file) did not modify the file.

## add\_format

Expand Down
12 changes: 6 additions & 6 deletions lib/Data/Section/Writer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -177,17 +177,17 @@ Returns:

=over 4

=item `undef`
=item C<undef>

If </update_file> hasn't been called yet.
If L</update_file> hasn't been called yet.

=item `0`
=item C<0>

If the last call to </update_file> modified the file.
If the last call to L</update_file> modified the file.

=item `1`
=item C<1>

If the last call to </update_file> did not modify the file.
If the last call to L</update_file> did not modify the file.

=back

Expand Down
Loading