From 15a5d384105305b2a27dbd522c1d3173669a3d15 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 9 Aug 2019 09:05:08 +0000 Subject: [PATCH] Bug 23413: (QA follow-up) Fix terminology Changed the POD of the new method to use holds. --- Koha/Item.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Koha/Item.pm b/Koha/Item.pm index 5b270aee41..552e977e97 100644 --- a/Koha/Item.pm +++ b/Koha/Item.pm @@ -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 -- 2.11.0