RangefuncExperiment: Fix Seq2 typo

Change-Id: Ie4fc4028bf2c1f37ebf9b6228bdcbef15cb0d530
GitHub-Last-Rev: c077d546b8006eb27d45eb396b8cb57c8fc68436
GitHub-Pull-Request: golang/wiki#6
Reviewed-on: https://go-review.googlesource.com/c/wiki/+/556115
Reviewed-by: Cherry Mui <cherryyz@google.com>
Auto-Submit: Hyang-Ah Hana Kim <hyangah@gmail.com>
Reviewed-by: qiulaidongfeng <2645477756@qq.com>
diff --git a/RangefuncExperiment.md b/RangefuncExperiment.md
index 0f44dec..d141fcb 100644
--- a/RangefuncExperiment.md
+++ b/RangefuncExperiment.md
@@ -30,7 +30,7 @@
 With `GOEXPERIMENT=rangefunc` enabled, loops of the form
 
 	for v := range f { ... }    // f has type Seq[V], v has type V
-	for k, v := range g { ... } // g has type Seq[K,V], k and v have types K and V
+	for k, v := range g { ... } // g has type Seq2[K,V], k and v have types K and V
 
 will iterate over the values provided by `f` and `g`, with the usual semantics for break,
 continue, return, and other control flow in the loop bodies.  If `next(v)` or `next(k,v)`