summaryrefslogtreecommitdiff
path: root/include/extension.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/extension.h')
-rw-r--r--include/extension.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/extension.h b/include/extension.h
index 1984aa9..bf945f7 100644
--- a/include/extension.h
+++ b/include/extension.h
@@ -173,7 +173,7 @@ public:
* It is only possible to create functions during the initialization of
* the library, before the Extension::module() method is called.
*
- * Note that the function must have been allocated on the HEAP (using
+ * Note that the function must have been allocated on the HEAP (using
* "new") and that the object will be destructed (using "delete")
* by the extension object (you thus do not have to destruct it
* yourself!)
@@ -187,7 +187,7 @@ public:
* Add a native function directly to the extension
* @param name Name of the function
* @param function The function to add
- * @param arguments Optional argument specification
+ * @param arguments Optional argument specification
* @return Function The added function
*/
Function *add(const char *name, native_callback_0 function, const std::initializer_list<Argument> &arguments = {});