# HG changeset patch # User rubidium # Date 2008-08-29 21:07:26 # Node ID 0a067b82c9493180aaa5a8a09d7551d2ccb6a398 # Parent 319f5bebddac311af7b738d0b26ff473827500e8 (svn r14186) -Fix [FS#2255]: small typo (Jafinto) diff --git a/src/pbs.h b/src/pbs.h --- a/src/pbs.h +++ b/src/pbs.h @@ -21,7 +21,7 @@ void UnreserveRailTrack(TileIndex tile, struct PBSTileInfo { TileIndex tile; ///< Tile the path ends, INVALID_TILE if no valid path was found. Trackdir trackdir; ///< The reserved trackdir on the tile. - bool okay; ///< True if tile is a safe wairing position, false otherwise. + bool okay; ///< True if tile is a safe waiting position, false otherwise. PBSTileInfo() : tile(INVALID_TILE), trackdir(INVALID_TRACKDIR), okay(false) {} PBSTileInfo(TileIndex _t, Trackdir _td, bool _okay) : tile(_t), trackdir(_td), okay(_okay) {}