doc: fix some invalid \ref commands

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2022-03-01 13:47:57 +10:00
parent c88435e51b
commit 7f6312c043

View file

@ -370,12 +370,12 @@ ei_property_set(struct ei *ei, const char *property, const char *value);
* - If the property does not yet exist, it is created with the given @ref
* ei_property_permission.
* - If the property exists and @a value is not NULL and the @ref
* EI_PROPERTY_WRITE permission is set on the property, the value is changed
* EI_PROPERTY_PERM_WRITE permission is set on the property, the value is changed
* to the new value and the property's permissions are updated to the given
* permission.
* - If the property exists and @a value is NULL and the @ref
* EI_PROPERTY_WRITE and @ref EI_PROPERTY_DELETE permission is set on the
* property, the property is deleted.
* EI_PROPERTY_PERM_WRITE and @ref EI_PROPERTY_PERM_DELETE permission is set
* on the property, the property is deleted.
*
* Note that property permissions only apply to the libei client, they do not
* apply to the EIS server which can read, modify and delete any property
@ -396,7 +396,7 @@ ei_property_set_with_permissions(struct ei *ei, const char *property, const char
/**
* Return the permissions mask for the given property. If the property does
* not exist or does not have the @ref EI_PROPERTY_READ permission,
* not exist or does not have the @ref EI_PROPERTY_PERM_READ permission,
* this function returns zero.
*/
uint32_t
@ -404,7 +404,7 @@ ei_property_get_permissions(struct ei *ei, const char *property);
/**
* Return the value of the given property or NULL if the property is not set
* or does not have the @ref EI_PROPERTY_READ permission.
* or does not have the @ref EI_PROPERTY_PERM_READ permission.
*/
const char *
ei_property_get(struct ei *ei, const char *property);