(svn r19775) -Fix: improper use of 'then' in few comments (ln)

This commit is contained in:
smatz
2010-05-09 18:13:36 +00:00
parent 2eaca9e108
commit 3f961ca671
6 changed files with 6 additions and 6 deletions

View File

@@ -183,7 +183,7 @@ static bool BinaryHeap_Push(Queue *q, void *item, int priority)
while (i > 1) {
/* Get the parent of this object (divide by 2) */
j = i / 2;
/* Is the parent bigger then the current, switch them */
/* Is the parent bigger than the current, switch them */
if (BIN_HEAP_ARR(i).priority <= BIN_HEAP_ARR(j).priority) {
temp = BIN_HEAP_ARR(j);
BIN_HEAP_ARR(j) = BIN_HEAP_ARR(i);