From 4012fea822763ef3aa66dd949fa95b9f8d89450a Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Fri, 23 Jul 2021 22:28:26 +0900 Subject: all: fix typos Change-Id: I83180c472db8795803c1b9be3a33f35959e4dcc2 Reviewed-on: https://go-review.googlesource.com/c/go/+/336889 Reviewed-by: Rob Pike Reviewed-by: Austin Clements --- test/typeparam/slices.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/typeparam/slices.go b/test/typeparam/slices.go index b5e8e0c606..4bdf10748e 100644 --- a/test/typeparam/slices.go +++ b/test/typeparam/slices.go @@ -60,7 +60,7 @@ func _Equal[Elem comparable](s1, s2 []Elem) bool { return true } -// _EqualFn reports whether two slices are equal using a comparision +// _EqualFn reports whether two slices are equal using a comparison // function on each element. func _EqualFn[Elem any](s1, s2 []Elem, eq func(Elem, Elem) bool) bool { if len(s1) != len(s2) { -- cgit v1.2.3-54-g00ecf