From 549ff46f182b6793a0a7cd366981f077ee4480a0 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 23 Jan 2026 10:28:27 +0100 Subject: [PATCH] Bug 41521: Fix spelling Signed-off-by: Victor Grousset/tuxayo Signed-off-by: David Cook --- lib/WebService/ILS.pm | 8 ++++---- lib/WebService/ILS/OverDrive.pm | 2 +- lib/WebService/ILS/OverDrive/Patron.pm | 4 ++-- lib/WebService/ILS/RecordedBooks.pm | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/WebService/ILS.pm b/lib/WebService/ILS.pm index 2b66d5c5546..4813964e2ed 100644 --- a/lib/WebService/ILS.pm +++ b/lib/WebService/ILS.pm @@ -159,7 +159,7 @@ sub _get_param_spec { =item C => secret key (password) =item C => sometimes service providers provide access - to differnt "libraries" + to different "libraries" =back @@ -299,7 +299,7 @@ Sort order can be added after option with ":", eg =item C => number of copies owned -=item C => availability type, provider dependant +=item C => availability type, provider dependent =back @@ -476,7 +476,7 @@ item records will have: =head3 Returns holds item record (as described above) -In addition, C field will be incorported as well. +In addition, C field will be incorporated as well. =head2 remove_hold ($item_id) @@ -517,7 +517,7 @@ item records will have: =head3 Returns checkout item record (as described above) -In addition, C field will be incorported as well. +In addition, C field will be incorporated as well. =head2 return ($item_id) diff --git a/lib/WebService/ILS/OverDrive.pm b/lib/WebService/ILS/OverDrive.pm index 27c18c40268..bec58af19ae 100644 --- a/lib/WebService/ILS/OverDrive.pm +++ b/lib/WebService/ILS/OverDrive.pm @@ -344,7 +344,7 @@ sub _extract_link { sub _basic_callback { return $_[0]; } -# This is not exatly how we meant to use with_get_request() +# This is not exactly how we meant to use with_get_request() # ie processing should be placed within the callback. # However, if all goes well, it is faster (from the development perspective) # this way. diff --git a/lib/WebService/ILS/OverDrive/Patron.pm b/lib/WebService/ILS/OverDrive/Patron.pm index 997c93973db..dacaf67e69e 100644 --- a/lib/WebService/ILS/OverDrive/Patron.pm +++ b/lib/WebService/ILS/OverDrive/Patron.pm @@ -334,7 +334,7 @@ C<$auto_checkout> defaults to false. =head3 Returns holds item record -It is prefered that the C<$notification_email_address> is specified. +It is preferred that the C<$notification_email_address> is specified. If C<$auto_checkout> is set to true, the item will be checked out as soon as it becomes available. @@ -450,7 +450,7 @@ later (see L below). That would be the case with L with C<$auto_checkout> set to true. Once format is locked, an early return is not possible. -If C<$allow_multiple_format_checkouts> flag is set to true, mutiple formats +If C<$allow_multiple_format_checkouts> flag is set to true, multiple formats of the same item can be acioned. If it is false (default) and the item was already checked out, the checked out item record will be returned regardless of the format. diff --git a/lib/WebService/ILS/RecordedBooks.pm b/lib/WebService/ILS/RecordedBooks.pm index 5508f82745f..0e827a809c2 100644 --- a/lib/WebService/ILS/RecordedBooks.pm +++ b/lib/WebService/ILS/RecordedBooks.pm @@ -521,7 +521,7 @@ sub renew { $url ); - my $checkouts = $self->checkouts(@_) or die "Cannot renew, unkmown error"; + my $checkouts = $self->checkouts(@_) or die "Cannot renew, unknown error"; foreach my $i (@{ $checkouts->{items} }) { if ($i->{isbn} eq $isbn) { $i->{total} = scalar @{ $checkouts->{items} }; -- 2.47.3