diff -r 0839682a601b -r ea94d60d13e7 src/ai/api/ai_tilelist.hpp --- a/src/ai/api/ai_tilelist.hpp Mon Mar 31 08:42:20 2008 +0000 +++ b/src/ai/api/ai_tilelist.hpp Mon Mar 31 08:45:05 2008 +0000 @@ -28,8 +28,8 @@ public: /** * Adds the rectangle between tile_from and tile_to to the to-be-evaluated tiles. - * @param tile_from one corner of the tiles to add. - * @param tile_to the other corner of the tiles to add. + * @param tile_from One corner of the tiles to add. + * @param tile_to The other corner of the tiles to add. * @pre AIMap::IsValidTile(tile_from). * @pre AIMap::IsValidTile(tile_to). */ @@ -37,15 +37,15 @@ /** * Add a tile to the to-be-evaluated tiles. - * @param tile the tile to add. + * @param tile The tile to add. * @pre AIMap::IsValidTile(tile). */ void AddTile(TileIndex tile); /** * Remove the tiles inside the rectangle between tile_from and tile_to form the list. - * @param tile_from one corner of the tiles to remove. - * @param tile_to the other corner of the files to remove. + * @param tile_from One corner of the tiles to remove. + * @param tile_to The other corner of the files to remove. * @pre AIMap::IsValidTile(tile_from). * @pre AIMap::IsValidTile(tile_to). */ @@ -53,7 +53,7 @@ /** * Remove a tile from the list. - * @param tile the tile to remove. + * @param tile The tile to remove. * @pre AIMap::IsValidTile(tile). */ void RemoveTile(TileIndex tile);