Fix documentation

This commit is contained in:
Liam Minopulos 2019-02-28 11:25:14 +01:00
parent 0ff59bbc18
commit 9ddd168a04

View File

@ -8,6 +8,7 @@
#include "../types.h" #include "../types.h"
#include "../services/applet.h" #include "../services/applet.h"
/// Error configuration struct
typedef struct { typedef struct {
u8 custom_text; ///< Whether to show a custom error message. If this is false, a default message will be shown. u8 custom_text; ///< Whether to show a custom error message. If this is false, a default message will be shown.
u8 unk[7]; u8 unk[7];
@ -27,8 +28,8 @@ typedef struct {
void errorCreate(ErrorConfig* c); void errorCreate(ErrorConfig* c);
/** /**
* @brief Closes an ErrorConfg struct. * @brief Closes an ErrorConfig struct.
* @param c ErrorConfg struct. * @param c ErrorConfig struct.
*/ */
void errorClose(ErrorConfig* c); void errorClose(ErrorConfig* c);