mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
vfmt: change all '$expr' to '${expr}' (#16428)
This commit is contained in:
@@ -73,7 +73,7 @@ fn main() {
|
||||
ch := gen(mut ctx2)
|
||||
for i in 0 .. 5 {
|
||||
v := <-ch
|
||||
println('> received value: $v')
|
||||
println('> received value: ${v}')
|
||||
assert i == v
|
||||
}
|
||||
println('> main is finished here')
|
||||
@@ -187,4 +187,4 @@ fn main() {
|
||||
assert value == dump(f(ctx, key))
|
||||
assert not_found_value == dump(f(ctx, 'color'))
|
||||
}
|
||||
```
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user