Fix modinfo.h comments

The comments referred to a non-existent type.
This commit is contained in:
Markus Mäkelä
2017-01-03 20:19:22 +02:00
parent 66430a3584
commit f78db1aab9

View File

@ -96,13 +96,13 @@ typedef struct
* *
* @code{.cpp} * @code{.cpp}
* *
* MODULE* MXS_CREATE_MODULE() * MXS_MODULE* MXS_CREATE_MODULE()
* { * {
* // Module specific API implementation * // Module specific API implementation
* static FILTER_OBJECT my_object = { ... }; * static FILTER_OBJECT my_object = { ... };
* *
* // An implementation of the MODULE structure * // An implementation of the MXS_MODULE structure
* static MODULE info = { ... }; * static MXS_MODULE info = { ... };
* *
* // Any global initialization should be done here * // Any global initialization should be done here
* *