all: fix some typos

Change-Id: I94040ccf4fa0f5d69a75a7b686764f2f193cc20b
GitHub-Last-Rev: 1febb7f0dbaea286a9ddf3fef7661466998dcabb
GitHub-Pull-Request: golang/vscode-go#2442
Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/428675
Reviewed-by: Jamal Carvalho <jamal@golang.org>
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
TryBot-Result: kokoro <noreply+kokoro@google.com>
Auto-Submit: Hyang-Ah Hana Kim <hyangah@gmail.com>
Run-TryBot: Jamal Carvalho <jamal@golang.org>
diff --git a/src/debugAdapter/goDebug.ts b/src/debugAdapter/goDebug.ts
index f6867f4..cda659f 100644
--- a/src/debugAdapter/goDebug.ts
+++ b/src/debugAdapter/goDebug.ts
@@ -1925,7 +1925,7 @@
 			},
 			(err) => {
 				// No need to repeatedly show the error pop-up when expressions
-				// are continiously reevaluated in the Watch panel, which
+				// are continuously reevaluated in the Watch panel, which
 				// already displays errors.
 				this.sendErrorResponse(
 					response,
diff --git a/src/goMain.ts b/src/goMain.ts
index a525684..55f7e35 100644
--- a/src/goMain.ts
+++ b/src/goMain.ts
@@ -196,7 +196,7 @@
 	registerCommand('go.toggle.gc_details', commands.toggleGCDetails);
 	registerCommand('go.apply.coverprofile', commands.applyCoverprofile);
 
-	// Go Enviornment switching commands
+	// Go Environment switching commands
 	registerCommand('go.environment.choose', chooseGoEnvironment);
 
 	// Survey related commands
diff --git a/tools/relnotes/relnotes.go b/tools/relnotes/relnotes.go
index 732de08..9eed06a 100644
--- a/tools/relnotes/relnotes.go
+++ b/tools/relnotes/relnotes.go
@@ -34,7 +34,7 @@
 	filterDirs          = flag.String("dirs", "", "comma-separated list of directories that should be touched for a CL to be considered relevant")
 	sinceCL             = flag.Int("cl", -1, "the gerrit change number of the first CL to include in the output. Only changes submitted more recently than 'cl' will be included.")
 	project             = flag.String("project", "vscode-go", "name of the golang project")
-	exclFile            = flag.String("exclude-from", "", "optional path to changelog MD file. If specified, any 'CL NNNN' occurence in the content will cause that CL to be excluded from this tool's output.")
+	exclFile            = flag.String("exclude-from", "", "optional path to changelog MD file. If specified, any 'CL NNNN' occurrence in the content will cause that CL to be excluded from this tool's output.")
 	semanticVersion     = flag.String("semver", "", "the semantic version of the new release")
 	githubTokenFilePath = flag.String("token", "", "the absolute path to the github token file")
 )