From 5d0c7fd413a81837cff3e48881d873e9dcdb3fde Mon Sep 17 00:00:00 2001 From: Arseny Balobanov Date: Mon, 8 Mar 2021 22:59:18 +0300 Subject: [PATCH] [once] Fix doc comment. --- once/once.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/once/once.go b/once/once.go index dc1a058..ec2f577 100644 --- a/once/once.go +++ b/once/once.go @@ -6,7 +6,7 @@ package once type Once struct { } -// New create Once. +// New creates Once. func New() *Once { return nil }