Skip to content

Commit

Permalink
Add line break in doc.
Browse files Browse the repository at this point in the history
  • Loading branch information
FedeDP committed Jul 25, 2019
1 parent f9056e8 commit 948a683
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/map.rst
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Where not specified, these functions return a map_ret_code.

.. c:function:: map_iterate(m, fn, userptr)
Iterate an hashmap calling cb on each element until MAP_OK is returned (or end of hashmap is reached). Returns MAP_MISSING if map is NULL or empty.
Iterate an hashmap calling cb on each element until MAP_OK is returned (or end of hashmap is reached). Returns MAP_MISSING if map is NULL or empty. |br|
If fn() returns a value != MAP_OK, iteration will stop and: if value < MAP_OK, value will be returned, else MAP_OK will be returned.

:param m: pointer to map_t
Expand Down
2 changes: 1 addition & 1 deletion docs/src/stack.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Where not specified, these functions return a stack_ret_code.

.. c:function:: stack_iterate(s, fn, userptr)
Iterate a stack calling cb on each element until STACK_OK is returned (or end of stack is reached). Returns STACK_MISSING if stack is NULL or empty.
Iterate a stack calling cb on each element until STACK_OK is returned (or end of stack is reached). Returns STACK_MISSING if stack is NULL or empty. |br|
If fn() returns a value != STACK_OK, iteration will stop and: if value < STACK_OK, value will be returned, else STACK_OK will be returned.

:param s: pointer to stack_t
Expand Down

0 comments on commit 948a683

Please sign in to comment.