mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
fmt: remove the prefixed module name of const names, that are in the same module (related #22183) (#22185)
This commit is contained in:
parent
234fb8e2b0
commit
008aaad999
284 changed files with 2539 additions and 2572 deletions
|
@ -118,7 +118,7 @@ pub fn (mut octx OneContext) run_two_contexts(mut ctx1 context.Context, mut ctx2
|
|||
c2done := ctx2.done()
|
||||
select {
|
||||
_ := <-octx_cancel_done {
|
||||
octx.cancel(onecontext.canceled)
|
||||
octx.cancel(canceled)
|
||||
}
|
||||
_ := <-c1done {
|
||||
octx.cancel(ctx1.err())
|
||||
|
@ -136,7 +136,7 @@ pub fn (mut octx OneContext) run_multiple_contexts(mut ctx context.Context) {
|
|||
cdone := ctx.done()
|
||||
select {
|
||||
_ := <-octx_cancel_done {
|
||||
octx.cancel(onecontext.canceled)
|
||||
octx.cancel(canceled)
|
||||
}
|
||||
_ := <-cdone {
|
||||
octx.cancel(ctx.err())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue