Browse Source

btree: spelling fix

Brad Hards 15 years ago
parent
commit
f05a5e0df0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ccan/btree/test/run-random-access.c

+ 1 - 1
ccan/btree/test/run-random-access.c

@@ -290,7 +290,7 @@ static int test_insert(struct btree *btree, size_t key[], size_t count)
 	if (!find(btree, key, k))
 		return 0;
 	
-	/* Make sure key's presense is consistent with our array. */
+	/* Make sure key's presence is consistent with our array. */
 	found = btree_find_first(btree, &key[k], iter);
 	if (key[k]) {
 		if (!found || iter->item != &key[k])