diff options
Diffstat (limited to 'src/misc')
-rw-r--r-- | src/misc/binaryheap.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/misc/binaryheap.hpp b/src/misc/binaryheap.hpp index 944032cac..9096474e8 100644 --- a/src/misc/binaryheap.hpp +++ b/src/misc/binaryheap.hpp @@ -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 |