Skip to content

Commit fc93075

Browse files
committed
Fix a minor typo in a comment
1 parent 80af5f5 commit fc93075

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_content/doc/tutorial/generics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ func SumIntsOrFloats[K comparable, V int64 | float64](m map[K]V) V {
509509
return s
510510
}
511511

512-
// SumNumbers sums the values of map m. Its supports both integers
512+
// SumNumbers sums the values of map m. It supports both integers
513513
// and floats as map values.
514514
func SumNumbers[K comparable, V Number](m map[K]V) V {
515515
var s V

0 commit comments

Comments
 (0)