diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2019-04-28 11:19:13 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2019-04-28 11:19:13 (GMT) |
commit | 1ae85114016fb51d3d6328385c7cd1b1a071a498 (patch) | |
tree | 070f3d3756058e25463b2f0af69b5807fdaa9212 | |
parent | 7e945d90b17b58832f561cce8ce778abcd4a360f (diff) |
Fixed a Python binding signature.
-rw-r--r-- | plugins/pychrysalide/core/processors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/pychrysalide/core/processors.c b/plugins/pychrysalide/core/processors.c index 341c816..56498f3 100644 --- a/plugins/pychrysalide/core/processors.c +++ b/plugins/pychrysalide/core/processors.c @@ -223,7 +223,7 @@ bool populate_core_module_with_processors(void) { "register_processor", py_processors_register_type, METH_VARARGS, - "register_type(name, desc, cls, /)\n--\n\nRegister an an architecture processor by its name, description and class type." + "register_processor(name, desc, cls, /)\n--\n\nRegister an an architecture processor by its name, description and class type." }, { "get_processor_description", py_processors_get_description, |