Merge pull request #83 from Hongbo-Miao/patch-2

chore: update switch case code format
This commit is contained in:
Xargin 2020-03-21 22:03:02 +08:00 committed by GitHub
commit bd506de4eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,12 +8,12 @@ Go的类型系统会在编译时捕获很多错误但有些错误只能在运
```Go ```Go
switch s := suit(drawCard()); s { switch s := suit(drawCard()); s {
case "Spades": // ... case "Spades": // ...
case "Hearts": // ... case "Hearts": // ...
case "Diamonds": // ... case "Diamonds": // ...
case "Clubs": // ... case "Clubs": // ...
default: default:
panic(fmt.Sprintf("invalid suit %q", s)) // Joker? panic(fmt.Sprintf("invalid suit %q", s)) // Joker?
} }
``` ```