From 9ff13d64c4ea9b3539f9b162bc8c70f2a30f288e Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sun, 20 Nov 2016 15:25:33 +0000 Subject: fix spelling mistakes in hlcache code --- content/hlcache.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'content') diff --git a/content/hlcache.c b/content/hlcache.c index 042e1895e..95edd2120 100644 --- a/content/hlcache.c +++ b/content/hlcache.c @@ -16,8 +16,9 @@ * along with this program. If not, see . */ -/** \file - * High-level resource cache (implementation) +/** + * \file + * High-level resource cache implementation. */ #include @@ -86,7 +87,7 @@ struct hlcache_s { /** Ring of retrieval contexts */ hlcache_retrieval_ctx *retrieval_ctx_ring; - /* statsistics */ + /* statistics */ unsigned int hit_count; unsigned int miss_count; }; @@ -665,12 +666,12 @@ nserror hlcache_handle_retrieve(nsurl *url, uint32_t flags, hlcache_llcache_callback, ctx, &ctx->llcache); if (error != NSERROR_OK) { - /* error retriving handle so free context and return error */ + /* error retrieving handle so free context and return error */ free((char *) ctx->child.charset); free(ctx->handle); free(ctx); } else { - /* successfuly started fetch so add new context to list */ + /* successfully started fetch so add new context to list */ RING_INSERT(hlcache->retrieval_ctx_ring, ctx); *result = ctx->handle; -- cgit v1.2.3