1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

doc: fix typos (#16239)

This commit is contained in:
Grantley Cullar
2022-10-29 03:27:38 +08:00
committed by GitHub
parent a0a055cc4c
commit 21d18b0792
2 changed files with 3 additions and 3 deletions

View File

@@ -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
}
```