cli show options. doc and testing

This commit is contained in:
Olof hagsand 2020-10-01 11:07:57 +02:00
parent 6f2c4a076d
commit 09d33acd45
8 changed files with 64 additions and 6 deletions

View file

@ -881,7 +881,7 @@ xml_child_order(cxobj *xp,
* Further, never manipulate the child-list during operation or using the
* same object recursively, the function uses an internal field to remember the
* index used. It works as long as the same object is not iterated concurrently.
* If you need to delete a node you can do somethjing like:
* If you need to delete a node you can do somethhing like:
* @code
* cxobj *xprev = NULL;
* cxobj *x = NULL;
@ -892,6 +892,7 @@ xml_child_order(cxobj *xp,
* x = xprev;
* continue;
* }
* xprev = x;
* }
* @endcode
#ifdef XML_EXPLICIT_INDEX