summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorljfa-ag <ljfa-ag@web.de>2015-06-26 11:08:52 +0200
committerljfa-ag <ljfa-ag@web.de>2015-06-26 11:08:52 +0200
commitc455aeed051a1843cb0cc8907fb534f6cca72698 (patch)
tree20ca0fafaf8c3721a684c08141cfc2c631067c23
parent944e66a76521452607d2b2e2bbcd3fe700eec126 (diff)
downloadProject-Tick-c455aeed051a1843cb0cc8907fb534f6cca72698.tar.gz
Project-Tick-c455aeed051a1843cb0cc8907fb534f6cca72698.zip
Use Javadoc-like tags everywhere
-rw-r--r--include/tag_compound.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/tag_compound.h b/include/tag_compound.h
index 7d369da65f..2333713dc5 100644
--- a/include/tag_compound.h
+++ b/include/tag_compound.h
@@ -59,7 +59,7 @@ public:
/**
* @brief Accesses a tag by key
*
- * Returns a proxy value that can be converted to \c nbt::tag&.
+ * Returns a proxy value that can be converted to @ref tag&.
*/
tag_ref_proxy operator[](const std::string& key);
const_tag_ref_proxy operator[](const std::string& key) const;
@@ -85,7 +85,7 @@ public:
/**
* @brief Constructs and inserts a tag into the compound
*
- * If the given key does not exist, constructs a new tag of type \c T
+ * If the given key does not exist, constructs a new tag of type @c T
* with the given args and inserts it into the compound.
* @return true if the tag was inserted
*/
@@ -95,7 +95,7 @@ public:
/**
* @brief Constructs and assigns or inserts a tag into the compound
*
- * Constructs a new tag of type \c T with the given args and inserts
+ * Constructs a new tag of type @c T with the given args and inserts
* or assigns it to the given key.
* @return true if the key did not already exist.
*/