Skip to content

Commit

Permalink
doc UPDATE minor bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
michalvasko committed Feb 9, 2024
1 parent 26d5507 commit 98bd99b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions doc/transition.dox
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@
* - | ::ly_ctx_get_submodule_latest() | Supplement for ::ly_ctx_get_submodule()
* - | ::ly_ctx_get_submodule2_latest() | Supplement for ::ly_ctx_get_submodule2()
* ly_ctx_get_module_by_ns() | ::ly_ctx_get_module_ns () | Redesign the API - replace some of the parameters with standalone supplement functions.
* - | ::ly_ctx_reset_latests() | The new functionality of maintaining the latest module revision flag.
* ly_ctx_unset_searchdirs() | ::ly_ctx_unset_searchdir() | Simplify API and instead of index numbers, work with the values themselves.
* ly_ctx_set*() | ::ly_ctx_set_options() | API simplification.
* ly_ctx_unset*() | ::ly_ctx_unset_options() | ^
Expand Down Expand Up @@ -399,7 +398,7 @@
* - | ::lyd_child(), ::lyd_child_no_keys() | New wrapper to cover all children possibilities hidden behind a generic ::lyd_node structure.
* - | ::lyd_owner_module() | Added functionality.
* - | ::lyd_value_compare() | Added Functionality.
* - | ::lyd_target() | Added functionality for the instance-identifier representation.
* - | ::lyd_find_target() | Added functionality for the instance-identifier representation.
* lyd_node_module() | - | Not necessary since the connection with the compiled modules is much more straightforward.
* lyd_leaf_type() | - | Not necessary since the real type information is much more clear from the new ::lyd_value.
* lyd_dec64_to_double() | - | Removed as useless.
Expand Down
4 changes: 2 additions & 2 deletions src/log.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ typedef enum {
LIBYANG_API_DECL LY_LOG_LEVEL ly_log_level(LY_LOG_LEVEL level);

/**
* @ingroup logger
* @ingroup log
* @defgroup logopts Logging options
*
* Logging option bits of libyang.
Expand Down Expand Up @@ -268,7 +268,7 @@ typedef enum {
} LY_ERR;

/**
* @ingroup logger
* @ingroup log
* @typedef LY_VECODE
* @brief libyang's codes of validation error. Whenever ly_errno is set to LY_EVALID, the ly_vecode is also set
* to the appropriate LY_VECODE value.
Expand Down
2 changes: 1 addition & 1 deletion src/set.h
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ LIBYANG_API_DECL LY_ERR ly_set_rm_index(struct ly_set *set, uint32_t index, void
/**
* @brief Remove an object on the specific set index.
*
* Unlike ::ly_set_rm_indes(), this function moves all the items following the removed one.
* Unlike ::ly_set_rm_index(), this function moves all the items following the removed one.
*
* @param[in] set Set from which to remove.
* @param[in] index Index of the object to remove in the @p set.
Expand Down
2 changes: 1 addition & 1 deletion src/tree_data.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ struct lyxp_var;
* - ::lyd_find_meta()
*
* - ::lyd_path()
* - ::lyd_target()
* - ::lyd_find_target()
*
* - ::lyd_lyb_data_length()
*
Expand Down

0 comments on commit 98bd99b

Please sign in to comment.