[x/tour] content: clarify semantics of range clause

Fixes golang/tour#560

Change-Id: I91255fe7ddb6df16268d6adc6afa2a502f1265f0
Reviewed-on: https://go-review.googlesource.com/c/125055
Reviewed-by: Andrew Bonventre <andybons@golang.org>
X-Tour-Commit: 0b2cf7c0845f35c40cf2d699f801671149e9e2cb
diff --git a/tour/content/moretypes.article b/tour/content/moretypes.article
index 955214e..5fe9401 100644
--- a/tour/content/moretypes.article
+++ b/tour/content/moretypes.article
@@ -247,7 +247,12 @@
 
 You can skip the index or value by assigning to `_`.
 
-If you only want the index, drop the `,` `value` entirely.
+    for i, _ := range pow
+    for _, value := range pow
+
+If you only want the index, you can omit the second variable.
+
+    for i := range pow
 
 .play moretypes/range-continued.go