Fix errors in Doxygen comments

This commit is contained in:
Tristan Penman 2015-12-28 20:51:09 +11:00
parent db33cb833f
commit 000a1efc9a
3 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@ public:
* @brief Construct a new Schema using custom memory management
* functions
*
* @parma allocFn malloc- or new-like function to allocate memory
* @param allocFn malloc- or new-like function to allocate memory
* within Schema, such as for Subschema instances
* @param freeFn free-like function to free memory allocated with
* the `customAlloc` function

View File

@ -49,7 +49,7 @@ public:
* @brief Construct a new Subschema using custom memory management
* functions
*
* @parma allocFn malloc- or new-like function to allocate memory
* @param allocFn malloc- or new-like function to allocate memory
* within Schema, such as for Subschema instances
* @param freeFn free-like function to free memory allocated with
* the `customAlloc` function

View File

@ -61,9 +61,9 @@ public:
* will only continue for as long as the constraints are validated
* successfully.
*
* @param schema Schema that the target must validate against
* @param subschema Sub-schema that the target must validate against
*
* @return true if validation passes, false otherwise
* @return \c true if validation passes; \c false otherwise
*/
bool validateSchema(const Subschema &subschema)
{