aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2021-09-08 17:36:52 -0700
committerIan Lance Taylor <iant@golang.org>2021-09-09 00:37:48 +0000
commit41092c79a18019f483650a705d7adb5a0752e9ed (patch)
tree09f53575873ca071240cae8cc8a0c99b510f0a26
parent02a56b0527d5f2e54d6a3448d12cf7a0520576be (diff)
downloadgo-x-proposal-41092c79a18019f483650a705d7adb5a0752e9ed.tar.xz
43651-type-parameters.md: add missing backquote
Change-Id: If29e34707f08d9418ae96e1b15badc1a1b84abcd Reviewed-on: https://go-review.googlesource.com/c/proposal/+/348709 Trust: Ian Lance Taylor <iant@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
-rw-r--r--design/43651-type-parameters.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/design/43651-type-parameters.md b/design/43651-type-parameters.md
index ce32a88..341124e 100644
--- a/design/43651-type-parameters.md
+++ b/design/43651-type-parameters.md
@@ -780,7 +780,7 @@ Consider the `Smallest` example above.
We want it to work not just for slices of the predeclared ordered
types, but also for types defined by a program.
If a program uses `type MyString string`, the program can use the `<`
-operator with values of type `MyString.
+operator with values of type `MyString`.
It should be possible to instantiate `Smallest` with the type
`MyString`.