summaryrefslogtreecommitdiffstats
path: root/ingen/Resource.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-08-08 06:12:09 +0000
committerDavid Robillard <d@drobilla.net>2014-08-08 06:12:09 +0000
commitea8f653960d5b3a1fe6012f57cbfadd85a1ef68c (patch)
tree466269e08896b753698f2bccc5ab3bb87b03d48f /ingen/Resource.hpp
parente7edb3e68c29b3801911d9f77210b8e2f2cd1caf (diff)
downloadingen-ea8f653960d5b3a1fe6012f57cbfadd85a1ef68c.tar.gz
ingen-ea8f653960d5b3a1fe6012f57cbfadd85a1ef68c.tar.bz2
ingen-ea8f653960d5b3a1fe6012f57cbfadd85a1ef68c.zip
Use Markdown in doc comments for better source readability.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5428 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen/Resource.hpp')
-rw-r--r--ingen/Resource.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/ingen/Resource.hpp b/ingen/Resource.hpp
index 4bf3a22e..3490d88c 100644
--- a/ingen/Resource.hpp
+++ b/ingen/Resource.hpp
@@ -96,8 +96,8 @@ public:
/** Set (replace) a property value.
*
- * This will first erase any properties with the given @p uri, so after
- * this call exactly one property with predicate @p uri will be set.
+ * This will first erase any properties with the given `uri`, so after
+ * this call exactly one property with predicate `uri` will be set.
*/
virtual const Atom& set_property(
const Raul::URI& uri,
@@ -107,7 +107,7 @@ public:
/** Add a property value.
*
* This will not remove any existing values, so if properties with
- * predicate @p uri and values other than @p value exist, this will result
+ * predicate `uri` and values other than `value` exist, this will result
* in multiple values for the property.
*/
virtual void add_property(const Raul::URI& uri,
@@ -116,7 +116,7 @@ public:
/** Remove a property.
*
- * If @p value is patch:wildcard then any property with @p uri for a
+ * If `value` is patch:wildcard then any property with `uri` for a
* predicate will be removed.
*/
virtual void remove_property(const Raul::URI& uri,
@@ -128,8 +128,8 @@ public:
/** Set (replace) several properties at once.
*
- * This will erase all properties with keys in @p p, though multiple values
- * for one property may exist in @p and will all be set (unlike simply
+ * This will erase all properties with keys in `p`, though multiple values
+ * for one property may exist in `p` will all be set (unlike simply
* calling set_property in a loop which would only set one value).
*/
void set_properties(const Properties& p);
@@ -140,7 +140,7 @@ public:
/** Remove several properties at once.
*
* This removes all matching properties (both key and value), or all
- * properties with a matching key if the value in @p is patch:wildcard.
+ * properties with a matching key if the value in `p` is patch:wildcard.
*/
void remove_properties(const Properties& p);