summaryrefslogtreecommitdiff
path: root/src/road_cmd.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2011-05-14 18:35:40 +0000
committeralberth <alberth@openttd.org>2011-05-14 18:35:40 +0000
commit28092366ec8aaf953b6e8bb92d745ee2c32fad1e (patch)
treee2176cb86f0b1f62424b6ce93812fad1260e6c84 /src/road_cmd.cpp
parentaa4c7e021c8622aedeae780af3d8d362b1e5d515 (diff)
downloadopenttd-28092366ec8aaf953b6e8bb92d745ee2c32fad1e.tar.xz
(svn r22459) -Doc: Typo fixes and doxygen markup improvements.
Diffstat (limited to 'src/road_cmd.cpp')
-rw-r--r--src/road_cmd.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/road_cmd.cpp b/src/road_cmd.cpp
index 26fc8eb2c..57e322237 100644
--- a/src/road_cmd.cpp
+++ b/src/road_cmd.cpp
@@ -232,7 +232,7 @@ static CommandCost RemoveRoad(TileIndex tile, DoCommandFlag flags, RoadBits piec
SetTileOwner(other_end, other_owner);
}
- /* Mark tiles diry that have been repaved */
+ /* Mark tiles dirty that have been repaved */
MarkTileDirtyByTile(tile);
MarkTileDirtyByTile(other_end);
if (IsBridge(tile)) {
@@ -690,7 +690,7 @@ do_clear:;
SetRoadOwner(other_end, rt, _current_company);
SetRoadOwner(tile, rt, _current_company);
- /* Mark tiles diry that have been repaved */
+ /* Mark tiles dirty that have been repaved */
MarkTileDirtyByTile(other_end);
MarkTileDirtyByTile(tile);
if (IsBridge(tile)) {
@@ -763,7 +763,7 @@ CommandCost CmdBuildLongRoad(TileIndex start_tile, DoCommandFlag flags, uint32 p
}
/* On the X-axis, we have to swap the initial bits, so they
- * will be interpreted correctly in the GTTS. Futhermore
+ * will be interpreted correctly in the GTTS. Furthermore
* when you just 'click' on one tile to build them. */
if ((axis == AXIS_Y) == (start_tile == end_tile && HasBit(p2, 0) == HasBit(p2, 1))) drd ^= DRD_BOTH;
/* No disallowed direction bits have to be toggled */