### Description
Typo in function example at src/modules/siputils/doc/siputils_admin.xml:
Instead of:
... if(is_first_hop()) { ... } ... if(is_first_hop_mode("1")) { ... } ...
example should be:
... if (is_first_hop()) { ... } ... if (is_first_hop("1")) { ... } ...