From fb785932a05fab7c2936cdb0c27cc885499371ed Mon Sep 17 00:00:00 2001 From: Dominus Iniquitatis Date: Thu, 5 Nov 2020 04:56:25 +0300 Subject: [PATCH] Single-byte typo fix --- src/nanovg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nanovg.h b/src/nanovg.h index 032575f..cb63e52 100644 --- a/src/nanovg.h +++ b/src/nanovg.h @@ -414,7 +414,7 @@ NVGpaint nvgBoxGradient(NVGcontext* ctx, float x, float y, float w, float h, NVGpaint nvgRadialGradient(NVGcontext* ctx, float cx, float cy, float inr, float outr, NVGcolor icol, NVGcolor ocol); -// Creates and returns an image patter. Parameters (ox,oy) specify the left-top location of the image pattern, +// Creates and returns an image pattern. Parameters (ox,oy) specify the left-top location of the image pattern, // (ex,ey) the size of one image, angle rotation around the top-left corner, image is handle to the image to render. // The gradient is transformed by the current transform when it is passed to nvgFillPaint() or nvgStrokePaint(). NVGpaint nvgImagePattern(NVGcontext* ctx, float ox, float oy, float ex, float ey,