mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
checker: fix a typo
This commit is contained in:
parent
3fd2dd45a4
commit
71f1be5388
@ -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*
|
||||
|
@ -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'
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user