From 331d54759a159aeb909dd16e461e60d0cf3fb921 Mon Sep 17 00:00:00 2001
From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Date: Thu, 15 Dec 2022 10:04:14 +0000
Subject: [PATCH] Bug 32472: Fix wrong POD for bookseller->subscriptions
Content-Type: text/plain; charset=utf-8

You should not call this in list context anymore after
bug 29844.

Test plan:
Check pod of Bookseller.

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
---
 Koha/Acquisition/Bookseller.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Koha/Acquisition/Bookseller.pm b/Koha/Acquisition/Bookseller.pm
index 26a0a4321f..7cf76d6705 100644
--- a/Koha/Acquisition/Bookseller.pm
+++ b/Koha/Acquisition/Bookseller.pm
@@ -63,7 +63,7 @@ sub contacts {
 =head3 subscriptions
 
     my $vendor        = Koha::Acquisition::Booksellers->find( $id );
-    my @subscriptions = $vendor->subscriptions();
+    my $subscriptions = $vendor->subscriptions();
 
 Returns the list of subscriptions for the vendor
 
-- 
2.30.2