From 57a7db11bfe76b12624366df66aaf1745079e74e Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Tue, 31 Oct 2023 18:41:21 +0200 Subject: [PATCH] json: fix comment (MyTitle -> ETitle) (#19719) --- vlib/json/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/json/README.md b/vlib/json/README.md index 4e8cda4560..31cb924ebc 100644 --- a/vlib/json/README.md +++ b/vlib/json/README.md @@ -24,7 +24,7 @@ mut: family string [json: '-'] // this field will be skipped age int salary f32 - title JobTitle [json: 'ETitle'] // the key for this field will be 'MyTitle', not 'title' + title JobTitle [json: 'ETitle'] // the key for this field will be 'ETitle', not 'title' } fn main() {