Add package-level doc comments

This commit is contained in:
Sasha Koshka 2023-06-30 19:40:45 -04:00
parent a5ba4cd855
commit c7c6fd2894
2 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,5 @@
// Canvas defines a standard interface for images that support drawing
// primitives.
package canvas
import "image"

View File

@ -1,3 +1,5 @@
// Package event provides a system for broadcasting events to multiple event
// handlers.
package event
// A cookie is returned when you add an event handler so you can remove it