From 748996c78920eb02c198d1c895f8c7d5d38c3fc1 Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Tue, 14 May 2024 12:34:42 -0400 Subject: [PATCH] Be more descriptive with what a path is --- canvas/canvas.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/canvas/canvas.go b/canvas/canvas.go index d532f79..b4fd124 100644 --- a/canvas/canvas.go +++ b/canvas/canvas.go @@ -32,10 +32,10 @@ type StrokeAlign int; const ( // have multiple pens associated with it, each maintaining their own drawing // state. type Pen interface { - // Rectangle draws a rectangle + // Rectangle draws a rectangle. Rectangle (image.Rectangle) - // Path draws a path + // Path draws a path, which is a series of connected points. Path (points ...image.Point) // StrokeWeight sets how thick the stroke is. The default value is zero.