diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-05-27 11:47:21 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-05-27 11:47:21 +0100 |
| commit | 45dbe8d354a776dfc526f5a31b9f49158640e45b (patch) | |
| tree | d969f52d52132704c996ddc90a9e7bbf134d845a /code | |
| parent | ddb99dd638f213275a921ab28f491e1948f59770 (diff) | |
`default:` to `case:`; `no_alias` to `#no_alias`
Diffstat (limited to 'code')
| -rw-r--r-- | code/demo.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/demo.odin b/code/demo.odin index 323754a23..c67cee184 100644 --- a/code/demo.odin +++ b/code/demo.odin @@ -10,7 +10,7 @@ main :: proc() { case '-': accumulator -= 1; case '*': accumulator *= 2; case '/': accumulator /= 2; - default: // Ignore everything else + case: // Ignore everything else } } |