From 000acd8f87894e27460d53c7c83fdb91fe5d4005 Mon Sep 17 00:00:00 2001 From: cui fliter Date: Thu, 3 Nov 2022 20:27:13 +0800 Subject: [PATCH] fix some typos Signed-off-by: cui fliter --- context.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/context.go b/context.go index 1ddb09f..d5e658d 100644 --- a/context.go +++ b/context.go @@ -465,7 +465,7 @@ func (dc *Context) Stroke() { } // FillPreserve fills the current path with the current color. Open subpaths -// are implicity closed. The path is preserved after this operation. +// are implicitly closed. The path is preserved after this operation. func (dc *Context) FillPreserve() { var painter raster.Painter if dc.mask == nil { @@ -484,7 +484,7 @@ func (dc *Context) FillPreserve() { } // Fill fills the current path with the current color. Open subpaths -// are implicity closed. The path is cleared after this operation. +// are implicitly closed. The path is cleared after this operation. func (dc *Context) Fill() { dc.FillPreserve() dc.ClearPath()