summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemprop.cc
diff options
context:
space:
mode:
authorreaverb <reaverb.Crawl@gmail.com>2014-06-05 02:06:24 -0400
committerreaverb <reaverb.Crawl@gmail.com>2014-06-05 02:06:24 -0400
commitdd8a5379673542f0cf606a2fdcc0c692d25728d7 (patch)
tree03a7bec264abb48250f2927c7f23b46ba7c1222e /crawl-ref/source/itemprop.cc
parent4e359b6150a2b2f3201f52ffc1ea586a5c2d0a2a (diff)
downloadcrawl-ref-dd8a5379673542f0cf606a2fdcc0c692d25728d7.tar.gz
crawl-ref-dd8a5379673542f0cf606a2fdcc0c692d25728d7.zip
Make Doxygen @returns "@return" for consistancy.
Diffstat (limited to 'crawl-ref/source/itemprop.cc')
-rw-r--r--crawl-ref/source/itemprop.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/itemprop.cc b/crawl-ref/source/itemprop.cc
index ddf7f17c49..3cb32e9af7 100644
--- a/crawl-ref/source/itemprop.cc
+++ b/crawl-ref/source/itemprop.cc
@@ -654,7 +654,7 @@ void set_net_stationary(item_def &item)
*
* Currently only carrion and nets with a trapped victim are stationary.
* @param item The item.
- * @returns True iff the item is stationary.
+ * @return True iff the item is stationary.
*/
bool item_is_stationary(const item_def &item)
{
@@ -665,7 +665,7 @@ bool item_is_stationary(const item_def &item)
* Is the item a stationary net?
*
* @param item The item.
- * @returns True iff the item is a stationary net.
+ * @return True iff the item is a stationary net.
*/
bool item_is_stationary_net(const item_def &item)
{
@@ -677,7 +677,7 @@ bool item_is_stationary_net(const item_def &item)
* Get the actor held in a stationary net.
*
* @param net A stationary net item.
- * @returns A pointer to the actor in the net, guaranteed to be non-null.
+ * @return A pointer to the actor in the net, guaranteed to be non-null.
*/
actor *net_holdee(const item_def &net)
{
@@ -2491,7 +2491,7 @@ bool gives_resistance(const item_def &item)
* Return the mass of an item (aum).
*
* @param item The item.
- * @returns The mass of the item.
+ * @return The mass of the item.
*/
int item_mass(const item_def &item)
{