From 0bd4d3aa2925258c0d6b784a362dbed6ed7ef92b Mon Sep 17 00:00:00 2001 From: Castor Fu <6226927+castorf@users.noreply.github.com> Date: Sun, 4 Jun 2023 14:57:07 -0700 Subject: [PATCH] Fix argument order of PdfObject.forEach in documentation. --- docs/src/mutool-object-pdf-object.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/mutool-object-pdf-object.rst b/docs/src/mutool-object-pdf-object.rst index 2cc3df7f4a..e9165fa85d 100644 --- a/docs/src/mutool-object-pdf-object.rst +++ b/docs/src/mutool-object-pdf-object.rst @@ -86,7 +86,7 @@ All functions that take `PDFObjects`, do automatic translation between :title:`J Iterate over all the entries in a dictionary or array and call `fun` for each key-value pair. - :arg fun: Function in the format `function(key,value){...}`. + :arg fun: Function in the format `function(value,key){...}`. .. method:: push(item)