summaryrefslogtreecommitdiff
path: root/src/industry_cmd.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2010-08-02 20:47:27 +0000
committeralberth <alberth@openttd.org>2010-08-02 20:47:27 +0000
commit0e900039f3531f0f64e93e216eb44e45b463d5b7 (patch)
tree96f4f0630ee6b21d875dcfe08bde38ab453b3a1f /src/industry_cmd.cpp
parent4781f1fa92b18df31bef4e632f0efd50a89ed1d2 (diff)
downloadopenttd-0e900039f3531f0f64e93e216eb44e45b463d5b7.tar.xz
(svn r20320) -Doc: Small Doxygen and normal comment fixes, and an missed addition.
Diffstat (limited to 'src/industry_cmd.cpp')
-rw-r--r--src/industry_cmd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp
index 90c7ae353..fea6e5d7e 100644
--- a/src/industry_cmd.cpp
+++ b/src/industry_cmd.cpp
@@ -1689,7 +1689,7 @@ static void DoCreateNewIndustry(Industry *i, TileIndex tile, IndustryType type,
* @param seed random seed (possibly) used by industries
* @param initial_random_bits The random bits the industry is going to have after construction.
* @param founder Founder of the industry
- * @param ip Pointer to store newly created industry.
+ * @param [out] ip Pointer to store newly created industry.
* @return Succeeded or failed command.
*
* @post \c *ip contains the newly created industry if all checks are successful and the \a flags request actual creation, else it contains \c NULL afterwards.
@@ -1971,7 +1971,7 @@ static void UpdateIndustryStatistics(Industry *i)
/** Simple helper that will collect data for the generation of industries */
struct ProbabilityHelper {
uint16 prob; ///< probability
- IndustryType ind; ///< industry id correcponding
+ IndustryType ind; ///< Industry id.
};
/**