From e5da43b059be8156088850d1675bbfc90c8eaf5d Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Wed, 19 May 2021 13:22:53 -0500 Subject: [PATCH] more clear --- src/pixie/context.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pixie/context.nim b/src/pixie/context.nim index 754c50b..346181b 100644 --- a/src/pixie/context.nim +++ b/src/pixie/context.nim @@ -118,7 +118,7 @@ proc ellipse*(ctx: Context, x, y, rx, ry: float32) {.inline.} = ctx.path.ellipse(x, y, rx, ry) proc fill*(ctx: Context, path: Path, windingRule = wrNonZero) {.inline.} = - ## Fills the current or given path with the current fillStyle. + ## Fills the path with the current fillStyle. ctx.image.fillPath( path, ctx.fillStyle, @@ -127,7 +127,7 @@ proc fill*(ctx: Context, path: Path, windingRule = wrNonZero) {.inline.} = ) proc fill*(ctx: Context, windingRule = wrNonZero) {.inline.} = - ## Fills the current or given path with the current fillStyle. + ## Fills the current path with the current fillStyle. ctx.fill(ctx.path, windingRule) proc stroke*(ctx: Context, path: Path) {.inline.} =