From 7d920025a2eaca1ec879d2e78b46576ca3351cc9 Mon Sep 17 00:00:00 2001 From: Sebastian Rasmussen Date: Tue, 10 Jan 2012 01:10:28 +0100 Subject: Fix many spelling errors. --- fitz/base_hash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fitz/base_hash.c') diff --git a/fitz/base_hash.c b/fitz/base_hash.c index 02acc8f1..2cbd9f4b 100644 --- a/fitz/base_hash.c +++ b/fitz/base_hash.c @@ -1,7 +1,7 @@ #include "fitz.h" /* -Simple hashtable with open adressing linear probe. +Simple hashtable with open addressing linear probe. Unlike text book examples, removing entries works correctly in this implementation, so it wont start exhibiting bad behaviour if entries are inserted @@ -194,7 +194,7 @@ fz_hash_remove(fz_hash_table *table, void *key) { if (!ents[pos].val) { - fz_warn(table->ctx, "assert: remove inexistant hash entry"); + fz_warn(table->ctx, "assert: remove inexistent hash entry"); return; } -- cgit v1.2.3