From 3269b25e7fa22e113398600e7c93176a209d47f4 Mon Sep 17 00:00:00 2001 From: Yingchun Lai <405403881@qq.com> Date: Tue, 1 Jun 2021 12:01:19 +0800 Subject: [PATCH] Update src/base/value_schema_manager.cpp --- src/base/value_schema_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/value_schema_manager.cpp b/src/base/value_schema_manager.cpp index 40437858cd..23d53cdf32 100644 --- a/src/base/value_schema_manager.cpp +++ b/src/base/value_schema_manager.cpp @@ -47,7 +47,7 @@ value_schema *value_schema_manager::get_value_schema(uint32_t meta_cf_data_versi // first bit = 1 means the data version is >= VERSION_2 if (first_byte & 0x80) { // In order to keep backward compatibility, we should return latest version if the data - // version in value is not found. In other words, it will works well in future version if it + // version in value is not found. In other words, it will work well in future version if it // is compatible with latest version in current auto schema = get_value_schema(first_byte & 0x7F); if (nullptr == schema) {