From 6678658b1073302fa6dafd77510574124b6d5ea6 Mon Sep 17 00:00:00 2001 From: jaywgraves Date: Thu, 11 Oct 2012 12:30:49 -0500 Subject: [PATCH] typo --- examples/slices/slices.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/slices/slices.go b/examples/slices/slices.go index afe7935..77c8b1f 100644 --- a/examples/slices/slices.go +++ b/examples/slices/slices.go @@ -27,7 +27,7 @@ func main() { // support several more that make them richer than // arrays. One is the builtin `append`, which // returns a slice containing one or more new values. - // Note that we need to accapt a return value from + // Note that we need to accept a return value from // append as we may get a new slice reference. s = append(s, 6) s = append(s, 7, 8)