summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Sauer <ensonic@users.sf.net>2019-07-23 20:25:04 +0200
committerStefan Sauer <ensonic@users.sf.net>2019-07-23 20:25:04 +0200
commitec86b170be501333988e2d96ff827a4b1f4f19a2 (patch)
treeb66fac8a53b4affd69e52098396c0c8aad35a86a
parentfc28240c67d9cc69fec59e400d756c368bd2eed7 (diff)
downloadgtk-doc-ec86b170be501333988e2d96ff827a4b1f4f19a2.tar.gz
mkdb: fix annotation docs for 'out callee-allocates'
Fixes #93
-rw-r--r--gtkdoc/mkdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtkdoc/mkdb.py b/gtkdoc/mkdb.py
index da59c42..5658449 100644
--- a/gtkdoc/mkdb.py
+++ b/gtkdoc/mkdb.py
@@ -142,7 +142,7 @@ AnnotationDefinition = {
'not-error': "A GError parameter is not to be handled like a normal GError.",
'out': "Parameter for returning results. Default is <acronym>transfer full</acronym>.",
'out caller-allocates': "Out parameter, where caller must allocate storage.",
- 'out callee-allocates': "Out parameter, where caller must allocate storage.",
+ 'out callee-allocates': "Out parameter, where callee must allocate storage.",
'ref-func': "The specified function is used to ref a struct, must be a GTypeInstance.",
'rename-to': "Rename the original symbol's name to SYMBOL.",
'scope call': "The callback is valid only during the call to the method.",