diff options
Diffstat (limited to 'plugins/pychrysalide/arch/operands')
-rw-r--r-- | plugins/pychrysalide/arch/operands/module.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/pychrysalide/arch/operands/module.c b/plugins/pychrysalide/arch/operands/module.c index 10477ed..cbd0bde 100644 --- a/plugins/pychrysalide/arch/operands/module.c +++ b/plugins/pychrysalide/arch/operands/module.c @@ -1,6 +1,6 @@ /* Chrysalide - Outil d'analyse de fichiers binaires - * module.c - intégration du répertoire arch en tant que module + * module.c - intégration du répertoire operands en tant que module * * Copyright (C) 2019-2020 Cyrille Bagard * @@ -53,10 +53,10 @@ bool add_arch_operands_module(PyObject *super) bool result; /* Bilan à retourner */ PyObject *module; /* Sous-module mis en place */ -#define PYCHRYSALIDE_ARCH_OPERANDS_DOC \ - "This module contains implementations for most common operand usages." \ - "\n" \ - "These operands are usually added to objects such as" \ +#define PYCHRYSALIDE_ARCH_OPERANDS_DOC \ + "This module contains implementations for most common operand usages.\n" \ + "\n" \ + "These operands are usually added to objects such as" \ " pychrysalide.arch.ArchInstruction when disassembling a binary." static PyModuleDef py_chrysalide_arch_operands_module = { |