From 71f1be53888b86201b44f4c4fc584057f14147ad Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sun, 5 Sep 2021 18:46:14 +0300 Subject: [PATCH] checker: fix a typo --- CHANGELOG.md | 3 ++- vlib/v/checker/checker.v | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae656f34b9..d4307c0633 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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* diff --git a/vlib/v/checker/checker.v b/vlib/v/checker/checker.v index 7d868dccba..2765375fa1 100644 --- a/vlib/v/checker/checker.v +++ b/vlib/v/checker/checker.v @@ -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' )