Skip to content

Commit

Permalink
Small doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
FedeDP committed Mar 27, 2018
1 parent a518914 commit 450a442
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 13 deletions.
11 changes: 0 additions & 11 deletions docs/src/data_structures.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,6 @@ Types
/* Modules states */
enum module_states { IDLE = 0x1, RUNNING = 0x2, PAUSED = 0x4, STOPPED = 0x8 };
/* Module return codes */
typedef enum {
MOD_WRONG_STATE = -6,
MOD_NO_PARENT,
MOD_NO_CTX,
MOD_NO_MOD,
MOD_NO_SELF,
MOD_ERR,
MOD_OK
} module_ret_code;
typedef struct {
const char *topic;
const char *message;
Expand Down
2 changes: 1 addition & 1 deletion docs/src/module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Module
======

Module API denotes libmodule interface functions that can be found in module/module.h header. |br|
Module API denotes libmodule interface functions that can be found in <module/module.h> header. |br|
It is splitted in two APIs.

.. _module_easy:
Expand Down
2 changes: 1 addition & 1 deletion docs/src/modules.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Modules
=======

Modules API denotes libmodule interface functions that can be found in module/modules.h header. |br|
Modules API denotes libmodule interface functions that can be found in <module/modules.h> header. |br|
Like Module API, it has an easy, single-context API. Moreover, it has an equivalent multi-context API. |br|
All these functions but modules_pre_start() return a :ref:`module_ret_code <module_ret_code>`.

Expand Down

0 comments on commit 450a442

Please sign in to comment.