diff options
| author | gingerBill <bill@gingerbill.org> | 2019-10-27 08:34:20 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2019-10-27 08:34:20 +0000 |
| commit | 0977ac111a48283ac9784ad9ebb3f18f9db6fd74 (patch) | |
| tree | e2d5cbf3ea23834daaa357c5419c2ee55d16d0e8 /core/unicode | |
| parent | 2db16d6a320c2c59bb5e932d7ed291dcc011af65 (diff) | |
Fix typo in `package utf8`; add `wchar_t` to `package c`
Diffstat (limited to 'core/unicode')
| -rw-r--r-- | core/unicode/utf8/utf8.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/unicode/utf8/utf8.odin b/core/unicode/utf8/utf8.odin index acdd887f0..c30f7b733 100644 --- a/core/unicode/utf8/utf8.odin +++ b/core/unicode/utf8/utf8.odin @@ -167,7 +167,7 @@ rune_at_pos :: proc(s: string, pos: int) -> rune { } i := 0; - for c in s { + for r in s { if i == pos { return r; } |