_content/blog/deconstructing-type-parameters: add missing comma
Change-Id: I44e55d90c989117fe13b5b3dfc5534543595aa28
Reviewed-on: https://go-review.googlesource.com/c/website/+/598275
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Commit-Queue: Ian Lance Taylor <iant@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Auto-Submit: Ian Lance Taylor <iant@google.com>
diff --git a/_content/blog/deconstructing-type-parameters.md b/_content/blog/deconstructing-type-parameters.md
index 3a423da..ca1dd5c 100644
--- a/_content/blog/deconstructing-type-parameters.md
+++ b/_content/blog/deconstructing-type-parameters.md
@@ -204,7 +204,7 @@
We could prohibit `[S MySlice]`, or we could say that `[S MySlice]`
only matches `MySlice`, but either approach runs into trouble with
predeclared types.
-A predeclared type, like `int` is its own underlying type.
+A predeclared type, like `int`, is its own underlying type.
We want to permit people to be able to write constraints that accept
any type argument whose underlying type is `int`.
In the language today, they can do that by writing `[T ~int]`.