From df658f97a25a7ba350cd52fede50be29f6775531 Mon Sep 17 00:00:00 2001 From: Mike Date: Tue, 17 May 2016 11:30:50 +0900 Subject: [PATCH] Fix typo in nvgCreateFontMem description --- src/nanovg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nanovg.h b/src/nanovg.h index 61f6f95..870a04d 100644 --- a/src/nanovg.h +++ b/src/nanovg.h @@ -487,7 +487,7 @@ void nvgStroke(NVGcontext* ctx); // Returns handle to the font. int nvgCreateFont(NVGcontext* ctx, const char* name, const char* filename); -// Creates image by loading it from the specified memory chunk. +// Creates font by loading it from the specified memory chunk. // Returns handle to the font. int nvgCreateFontMem(NVGcontext* ctx, const char* name, unsigned char* data, int ndata, int freeData);