Snippets: remove the comma from the placeholder in `forr`

When using "forr" snippet,
the comma in the "_, " placeholder will be deleted
if user edit the placeholder.

So the comma should not be part of the placeholder

Change-Id: Ief4e6f24055c75dbb75d413b8fdbdeae39a437c2
GitHub-Last-Rev: 738c0bf12c211e7466058613eee546c13d56b28f
GitHub-Pull-Request: golang/vscode-go#3602
Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/627895
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
kokoro-CI: kokoro <noreply+kokoro@google.com>
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
Commit-Queue: Hyang-Ah Hana Kim <hyangah@gmail.com>
diff --git a/extension/snippets/go.json b/extension/snippets/go.json
index 83890d5..daa19cf 100644
--- a/extension/snippets/go.json
+++ b/extension/snippets/go.json
@@ -77,7 +77,7 @@
 		},
 		"for range statement": {
 			"prefix": "forr",
-			"body": "for ${1:_, }${2:v} := range ${3:v} {\n\t$0\n}",
+			"body": "for ${1:_}, ${2:v} := range ${3:v} {\n\t$0\n}",
 			"description": "Snippet for a for range loop"
 		},
 		"channel declaration": {