Fix select indents.

This commit is contained in:
Arseny Balobanov 2020-03-12 19:38:15 +03:00
parent 66900d08e3
commit 6d352d61eb

View file

@ -329,14 +329,14 @@
* Select * Select
select { select {
case <-ch1: case <-ch1:
// ... // ...
case x := <-ch2: case x := <-ch2:
// ...use x... // ...use x...
case ch3 <- y: case ch3 <- y:
// ... // ...
default: default:
// ... // ...
} }
- select блокируется, пока ни один из `case`-ов не может выполниться. - select блокируется, пока ни один из `case`-ов не может выполниться.
@ -347,11 +347,11 @@
// ...create abort channel... // ...create abort channel...
fmt.Println("Commencing countdown. Press return to abort.") fmt.Println("Commencing countdown. Press return to abort.")
select { select {
case <-time.After(10 * time.Second): case <-time.After(10 * time.Second):
// Do nothing. // Do nothing.
case <-abort: case <-abort:
fmt.Println("Launch aborted!") fmt.Println("Launch aborted!")
return return
} }
launch() launch()
} }