Skip to content

Commit

Permalink
fixup! [Docs] Improve and unify Doxygen comments, part 1
Browse files Browse the repository at this point in the history
Signed-off-by: Michał Kowalczyk <mkow@invisiblethingslab.com>
  • Loading branch information
mkow committed Feb 21, 2022
1 parent 79e6230 commit cd33828
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions common/include/toml_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ bool toml_key_exists(const toml_table_t* root, const char* key);
int toml_bool_in(const toml_table_t* root, const char* key, bool defaultval, bool* retval);

/*!
* \brief Find an integer key-value in TOML manifest.
* \brief Finds an integer key-value in TOML manifest.
*
* \param root Root table of the TOML manifest.
* \param key Dotted key (e.g. "sgx.thread_num").
Expand All @@ -43,7 +43,7 @@ int toml_bool_in(const toml_table_t* root, const char* key, bool defaultval, boo
int toml_int_in(const toml_table_t* root, const char* key, int64_t defaultval, int64_t* retval);

/*!
* \brief Find a string key-value in TOML manifest.
* \brief Finds a string key-value in TOML manifest.
*
* \param root Root table of the TOML manifest.
* \param key Dotted key (e.g. "fs.mount.lib1.type").
Expand All @@ -55,7 +55,7 @@ int toml_int_in(const toml_table_t* root, const char* key, int64_t defaultval, i
int toml_string_in(const toml_table_t* root, const char* key, char** retval);

/*!
* \brief Find a "size" string key-value in TOML manifest (parsed via `parse_size_str()`).
* \brief Finds a "size" string key-value in TOML manifest (parsed via `parse_size_str()`).
*
* \param root Root table of the TOML manifest.
* \param key Dotted key (e.g. "sys.stack.size").
Expand Down

0 comments on commit cd33828

Please sign in to comment.