diff options
author | Daniel Gustafsson | 2025-05-13 11:29:14 +0000 |
---|---|---|
committer | Daniel Gustafsson | 2025-05-13 11:29:14 +0000 |
commit | 6e289f2d5da02b450f00fb57f0facc60bd73c0d1 (patch) | |
tree | f7d2ace7a6985809844366543385be1f19097543 | |
parent | 8ede692de512750ecb6930213e6d78ed90ef06d0 (diff) |
Fix order of parameters in POD documentation
The documentation for log_check() had the parameters in the wrong
order. Also while there, rename %parameters to %params to better
documentation for similar functions which use %params. Backpatch
down to v14 where this was introduced.
Author: Daniel Gustafsson <[email protected]>
Reviewed-by: Michael Paquier <[email protected]>
Discussion: https://postgr.es/m/[email protected]
Backpatch-through: 14
-rw-r--r-- | src/test/perl/PostgreSQL/Test/Cluster.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/perl/PostgreSQL/Test/Cluster.pm b/src/test/perl/PostgreSQL/Test/Cluster.pm index aa5b5316768..1c11750ac1d 100644 --- a/src/test/perl/PostgreSQL/Test/Cluster.pm +++ b/src/test/perl/PostgreSQL/Test/Cluster.pm @@ -2922,7 +2922,7 @@ sub log_content =pod -=item $node->log_check($offset, $test_name, %parameters) +=item $node->log_check($test_name, $offset, %params) Check contents of server logs. |