Skip to content
Draft
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ a new version of this module.

# FEATURES

- Support for both ECDSA and RSA encrytion.
- Support for both ECDSA and RSA encryption.
- Support for http-01, dns-01, and [tls-alpn-01](https://datatracker.ietf.org/doc/draft-ietf-acme-tls-alpn/) challenges.
- Comprehensive error handling with typed, [X::Tiny](https://metacpan.org/pod/X%3A%3ATiny)-based exceptions.
- Supports blocking and (experimentally) non-blocking I/O.
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/ACME2.pm
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ a new version of this module.

=over

=item * Support for both ECDSA and RSA encrytion.
=item * Support for both ECDSA and RSA encryption.

=item * Support for http-01, dns-01, and L<tls-alpn-01|https://datatracker.ietf.org/doc/draft-ietf-acme-tls-alpn/> challenges.

Expand Down
2 changes: 1 addition & 1 deletion lib/Net/ACME2/HTTP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ sub new {
_retries_left => $_MAX_RETRIES,
}, $class;

return bless $self, $class;
return $self;
}

sub timeout {
Expand Down
Loading