diff options
author | rubidium <rubidium@openttd.org> | 2014-10-12 18:41:53 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2014-10-12 18:41:53 +0000 |
commit | 771dcf3b7b15f58e1d6fb2795e7df3c00ebf2809 (patch) | |
tree | e7c1e9afe60baf165648954cde2110ad598aefbd /src/script/api | |
parent | fddeeb5e49f5daee49d79210dcfa1c845ff4a0d5 (diff) | |
download | openttd-771dcf3b7b15f58e1d6fb2795e7df3c00ebf2809.tar.xz |
(svn r27003) -Cleanup: fix the use of spaces and asterices "around" some comments
Diffstat (limited to 'src/script/api')
-rw-r--r-- | src/script/api/script_stationlist.hpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/script/api/script_stationlist.hpp b/src/script/api/script_stationlist.hpp index bc1947178..720a43639 100644 --- a/src/script/api/script_stationlist.hpp +++ b/src/script/api/script_stationlist.hpp @@ -202,10 +202,10 @@ public: class ScriptStationList_CargoWaitingFromByVia : public ScriptStationList_CargoWaiting { public: /** - * @param station_id Station to query for waiting cargo. - * @param cargo Cargo type to query for. - * @param from Origin station to restrict the query with. - */ + * @param station_id Station to query for waiting cargo. + * @param cargo Cargo type to query for. + * @param from Origin station to restrict the query with. + */ ScriptStationList_CargoWaitingFromByVia(StationID station_id, CargoID cargo, StationID from); }; @@ -233,10 +233,10 @@ public: class ScriptStationList_CargoPlannedViaByFrom : public ScriptStationList_CargoPlanned { public: /** - * @param station_id Station to query for planned flows. - * @param cargo Cargo type to query for. - * @param via Next hop to restrict the query with. - */ + * @param station_id Station to query for planned flows. + * @param cargo Cargo type to query for. + * @param via Next hop to restrict the query with. + */ ScriptStationList_CargoPlannedViaByFrom(StationID station_id, CargoID cargo, StationID via); }; @@ -266,10 +266,10 @@ public: class ScriptStationList_CargoPlannedFromByVia : public ScriptStationList_CargoPlanned { public: /** - * @param station_id Station to query for planned flows. - * @param cargo Cargo type to query for. - * @param from Origin station to restrict the query with. - */ + * @param station_id Station to query for planned flows. + * @param cargo Cargo type to query for. + * @param from Origin station to restrict the query with. + */ ScriptStationList_CargoPlannedFromByVia(StationID station_id, CargoID cargo, StationID from); }; |