checker: fix a typo

pull/8802/head^2
Alexander Medvednikov 2021-09-05 18:46:14 +03:00
parent 3fd2dd45a4
commit 71f1be5388
2 changed files with 3 additions and 2 deletions

View File

@ -1,10 +1,11 @@
-## V 0.2.4
-*Not yet released, changelog is not full*
- Bare metal support. Vinix OS kernel is now being developed in V.
- Builtin web framework vweb is now multithreaded, all CPU cores are used.
- String interpolation and struct stringers are now implemented in pure V
with a much cleaner and faster implementation. Previously libc's `sprintf`
was used.
- Improved `unused variable` warning. Assigning to a variable no longer marks it as used.
- Bare metal support. Vinix OS kernel is now being developed in V.
## V 0.2.2 - 0.2.3
*22 Jan 2021*

View File

@ -32,7 +32,7 @@ const (
array_builtin_methods = ['filter', 'clone', 'repeat', 'reverse', 'map', 'slice', 'sort',
'contains', 'index', 'wait', 'any', 'all', 'first', 'last', 'pop']
reserved_type_names = ['bool', 'i8', 'i16', 'int', 'i64', 'byte', 'u16', 'u32', 'u64',
'f32', 'f64', 'string', 'tune']
'f32', 'f64', 'string', 'rune']
vroot_is_deprecated_message = '@VROOT is deprecated, use @VMODROOT or @VEXEROOT instead'
)