aboutsummaryrefslogtreecommitdiff
path: root/_content/doc/tutorial
diff options
context:
space:
mode:
authorjiahua wang <wjh180909@gmail.com>2022-01-28 15:57:51 +0800
committerDO NOT USE <iant@google.com>2022-02-08 23:38:54 +0000
commit5c1de7bed96787c5610f8e046bce8b2a3f0cef0e (patch)
treec1b36ca9f0704cc6af2fef5378bc6a0b5311ce8c /_content/doc/tutorial
parent3547304864839a34537d4784b2e661b091d4c378 (diff)
downloadgo-x-website-5c1de7bed96787c5610f8e046bce8b2a3f0cef0e.tar.xz
_content/doc/tutorial: fix a typo
Fixes golang/go#50853 Change-Id: Ia09043435f23b979a2a0d198318096e6ecf52cb5 Reviewed-on: https://go-review.googlesource.com/c/website/+/381654 Reviewed-by: DO NOT USE <iant@google.com> Trust: Cherry Mui <cherryyz@google.com>
Diffstat (limited to '_content/doc/tutorial')
-rw-r--r--_content/doc/tutorial/generics.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/_content/doc/tutorial/generics.md b/_content/doc/tutorial/generics.md
index 82204179..95c6583d 100644
--- a/_content/doc/tutorial/generics.md
+++ b/_content/doc/tutorial/generics.md
@@ -417,7 +417,7 @@ section.
`SumNumbers` function.
```
- // SumNumbers sums the values of map m. Its supports both integers
+ // SumNumbers sums the values of map m. It supports both integers
// and floats as map values.
func SumNumbers[K comparable, V Number](m map[K]V) V {
var s V