From 0180da206dfa32a47b8b5242446f63055e4d0e6b Mon Sep 17 00:00:00 2001
From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Date: Wed, 28 Jun 2023 12:52:57 +0000
Subject: [PATCH] Bug 33537: Fix some POD in Installer.pm
Content-Type: text/plain; charset=utf-8

Test plan:
Run qa tools.

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Pedro Amorim <pedro.amorim@ptfs-europe.com>
---
 C4/Installer.pm | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/C4/Installer.pm b/C4/Installer.pm
index 1a2d93e82c..d41694d9d7 100644
--- a/C4/Installer.pm
+++ b/C4/Installer.pm
@@ -686,6 +686,12 @@ sub column_exists {
     return $exists;
 }
 
+=head2 TableExists
+
+    Test if a table exists
+
+=cut
+
 sub TableExists { # Legacy name
     my $table = shift;
     eval {
@@ -698,6 +704,12 @@ sub TableExists { # Legacy name
     return 0;
 }
 
+=head2 table_exists
+
+    Better name for legacy TableExists
+
+=cut
+
 sub table_exists { # More consistently named alias for TableExists
     return TableExists(@_);
 }
@@ -1041,7 +1053,7 @@ sub sanitize_zero_date {
     }
 }
 
-=head3 has_non_dynamic_row_format
+=head2 has_non_dynamic_row_format
 
 Return the number of tables with row_format that is not Dynamic
 
-- 
2.30.2