From 21d18b0792c793364013dacfbf2757865114403b Mon Sep 17 00:00:00 2001 From: Grantley Cullar <83633399+gospacedev@users.noreply.github.com> Date: Sat, 29 Oct 2022 03:27:38 +0800 Subject: [PATCH] doc: fix typos (#16239) --- doc/upcoming.md | 4 ++-- doc/vscode.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/upcoming.md b/doc/upcoming.md index 45a1d98e2..d8b20bad1 100644 --- a/doc/upcoming.md +++ b/doc/upcoming.md @@ -134,7 +134,7 @@ f(a) mut b := St{...} f(b) go g(mut b) -// `b` should not be accessed here any more +// `b` should not be accessed here anymore shared c := St{...} h(shared c) @@ -181,7 +181,7 @@ y := b['apple'] // not necesarily `3` // iteration over elements for k, v in b { - // concurrently changed k/v pairs may or my not be included + // concurrently changed k/v pairs may or may not be included } ``` diff --git a/doc/vscode.md b/doc/vscode.md index 579739b8a..c85c1b52d 100644 --- a/doc/vscode.md +++ b/doc/vscode.md @@ -96,7 +96,7 @@ The `-g` option will add the needed debugging information. You can find more debugging options in the [docs](docs.md#debugging). VS Code provides a hook called `preLaunchTask`, which can be used to compile -the application automatially every time you call the debugger. +the application automatically every time you call the debugger. [preLaunchTask](https://code.visualstudio.com/docs/editor/debugging#_launchjson-attributes) launches a task before the start of a debug session, set this attribute to the label of a task specified in [task.json](https://code.visualstudio.com/docs/editor/tasks) (in the workspace's .vscode folder). -- 2.30.2