(svn r20266) -Doc: Mostly typo fixes, a few doxygen-related improvements.

This commit is contained in:
alberth
2010-07-31 21:02:56 +00:00
parent 165452bad6
commit 1743c86610
35 changed files with 70 additions and 71 deletions

View File

@@ -523,7 +523,7 @@ static int32 NPFRailPathCost(AyStar *as, AyStarNode *current, OpenListNode *pare
/* Check for reverse in depot */
if (IsRailDepotTile(tile) && as->EndNodeCheck(as, &new_node) != AYSTAR_FOUND_END_NODE) {
/* Penalise any depot tile that is not the last tile in the path. This
* _should_ penalise every occurence of reversing in a depot (and only
* _should_ penalise every occurrence of reversing in a depot (and only
* that) */
cost += _settings_game.pf.npf.npf_rail_depot_reverse_penalty;
}