1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-19 20:49:11 +00:00

(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 adf94b8529
commit a825b4fa5f
35 changed files with 70 additions and 71 deletions

View File

@@ -23,7 +23,7 @@
/**
* Binary Heap as C++ template.
* A carrier which keeps its items automaticaly holds the smallest item at
* A carrier which keeps its items automatically holds the smallest item at
* the first position. The order of items is maintained by using a binary tree.
* The implementation is used for priority queue's.
*
@@ -36,7 +36,7 @@
* are allocated elsewhere.
*
* @par Implementation notes:
* Internaly the first item is never used, because that simplifies the
* Internally the first item is never used, because that simplifies the
* implementation.
*
* @par