kanban

Kanban client in Gio
Log | Files | Refs | README | LICENSE

commit 8651dd584f14b0c98fb4d4c844825b638f13e05d
parent 9bb29898787d76383ccbda2ffab36c3c759545fd
Author: Jack Mordaunt <jackmordaunt@gmail.com>
Date:   Fri, 19 Feb 2021 13:14:49 +0800

fix: typo

Diffstat:
Mstorage/storage.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/storage/storage.go b/storage/storage.go @@ -14,7 +14,7 @@ type Storer interface { Save(...kanban.Project) error // Load updates the Projects using data from the storage device. // Allows caller to allocate and control memory. - // Avoids copyig. + // Avoids copying. Load([]kanban.Project) error // Lookup a Project by name. Lookup(name string) (kanban.Project, bool, error)