From 7152f534e85ecf73786f8d38d106dd06d91cd4d6 Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Wed, 10 Jul 2024 21:53:00 +0100 Subject: [PATCH] Tunnel/bridge: Fix comments for some map accessor functions --- src/tunnelbridge_map.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tunnelbridge_map.h b/src/tunnelbridge_map.h index 49f956cb58..571bea4450 100644 --- a/src/tunnelbridge_map.h +++ b/src/tunnelbridge_map.h @@ -369,7 +369,7 @@ inline bool IsTunnelBridgeWithSignalSimulation(TileIndex t) /** * Is this a tunnel/bridge entrance tile with signal? * Tunnel bridge signal simulation has allways bit 5 on at entrance. - * @param t the tile that might be a tunnel/bridge. + * @param t the tunnel/bridge tile. * @pre IsTileType(t, MP_TUNNELBRIDGE) * @return true if and only if this tile is a tunnel/bridge entrance. */ @@ -392,7 +392,7 @@ inline bool IsTunnelBridgeSignalSimulationEntranceTile(TileIndex t) /** * Is this a tunnel/bridge entrance tile with signal only? - * @param t the tile that might be a tunnel/bridge. + * @param t the tunnel/bridge tile. * @pre IsTileType(t, MP_TUNNELBRIDGE) * @return true if and only if this tile is a tunnel/bridge entrance only. */ @@ -404,7 +404,7 @@ inline bool IsTunnelBridgeSignalSimulationEntranceOnly(TileIndex t) /** * Is this a tunnel/bridge exit? - * @param t the tile that might be a tunnel/bridge. + * @param t the tunnel/bridge tile. * @pre IsTileType(t, MP_TUNNELBRIDGE) * @return true if and only if this tile is a tunnel/bridge exit. */ @@ -426,7 +426,7 @@ inline bool IsTunnelBridgeSignalSimulationExitTile(TileIndex t) /** * Is this a tunnel/bridge exit only? - * @param t the tile that might be a tunnel/bridge. + * @param t the tunnel/bridge tile. * @pre IsTileType(t, MP_TUNNELBRIDGE) * @return true if and only if this tile is a tunnel/bridge exit only. */