From e2b9627269f35e9f2c33b3b55f737f0757fa171a Mon Sep 17 00:00:00 2001
From: johns <>
Date: Mon, 19 Feb 2001 09:59:21 +0000
Subject: [PATCH] Changed @returns to @return

---
 src/unit/script_unittype.cpp | 14 +++++++-------
 src/unit/upgrade.cpp         |  2 +-
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/unit/script_unittype.cpp b/src/unit/script_unittype.cpp
index a93f42762..71ce33f8d 100644
--- a/src/unit/script_unittype.cpp
+++ b/src/unit/script_unittype.cpp
@@ -790,7 +790,7 @@ local void CclUnitTypePrin1(SCM ptr,struct gen_printio* f)
 **
 **	@param ident	Identifier for unit type.
 **
-**	@returns	Unit type structure.
+**	@return		Unit type structure.
 */
 local SCM CclUnitType(SCM ident)
 {
@@ -812,7 +812,7 @@ local SCM CclUnitType(SCM ident)
 /**
 **	Get all unit type structures.
 **
-**	@returns	An array of all unit type structures.
+**	@return		An array of all unit type structures.
 */
 local SCM CclUnitTypeArray(void)
 {
@@ -836,7 +836,7 @@ local SCM CclUnitTypeArray(void)
 **
 **	@param ptr	Unit type object.
 **
-**	@returns	The identifier of the unit type.
+**	@return		The identifier of the unit type.
 */
 local SCM CclGetUnitTypeIdent(SCM ptr)
 {
@@ -853,7 +853,7 @@ local SCM CclGetUnitTypeIdent(SCM ptr)
 **
 **	@param ptr	Unit type object.
 **
-**	@returns	The name of the unit type.
+**	@return		The name of the unit type.
 */
 local SCM CclGetUnitTypeName(SCM ptr)
 {
@@ -871,7 +871,7 @@ local SCM CclGetUnitTypeName(SCM ptr)
 **	@param ptr	Unit type object.
 **	@param name	The name to set.
 **
-**	@returns	The name of the unit type.
+**	@return		The name of the unit type.
 */
 local SCM CclSetUnitTypeName(SCM ptr,SCM name)
 {
@@ -891,7 +891,7 @@ local SCM CclSetUnitTypeName(SCM ptr,SCM name)
 **
 **	@param ptr	Unit type object.
 **
-**	@returns	The property of the unit type.
+**	@return		The property of the unit type.
 */
 local SCM CclGetUnitTypeProperty(SCM ptr)
 {
@@ -907,7 +907,7 @@ local SCM CclGetUnitTypeProperty(SCM ptr)
 **	@param ptr	Unit type object.
 **	@param name	The property to set.
 **
-**	@returns	The property of the unit type.
+**	@return		The property of the unit type.
 */
 local SCM CclSetUnitTypeProperty(SCM ptr,SCM property)
 {
diff --git a/src/unit/upgrade.cpp b/src/unit/upgrade.cpp
index 0262cb8a2..d7dcb22e5 100644
--- a/src/unit/upgrade.cpp
+++ b/src/unit/upgrade.cpp
@@ -305,7 +305,7 @@ local const char* UpgradeWcNames[] = {
 **			NULL for generated name (icon-<ident>).
 **	@param costs	costs to upgrade.
 **
-**	@returns upgrade id or -1 for error
+**	@return		upgrade id or -1 for error
 */
 local Upgrade* AddUpgrade(const char* ident,const char* icon,const int* costs)
 {