Bug 23413: (QA follow-up) Fix terminology
authorKatrin Fischer <katrin.fischer.83@web.de>
Fri, 9 Aug 2019 09:05:08 +0000 (09:05 +0000)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Tue, 13 Aug 2019 10:32:37 +0000 (11:32 +0100)
Changed the POD of the new method to use holds.

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Koha/Item.pm

index 5b270ae..552e977 100644 (file)
@@ -128,11 +128,11 @@ sub checkout {
 
 =head3 holds
 
-my $transfer = $item->holds();
-my $transfer = $item->holds($params);
-my $transfer = $item->holds({ found => 'W'});
+my $holds = $item->holds();
+my $holds = $item->holds($params);
+my $holds = $item->holds({ found => 'W'});
 
-Return reserves attached to an item, optionally accept a hashref of params to pass to search
+Return holds attached to an item, optionally accept a hashref of params to pass to search
 
 =cut