From 9395674e1674d9f959bc61877d03d558baa97f58 Mon Sep 17 00:00:00 2001 From: steak-zhuo Date: Sun, 15 Jan 2023 13:08:00 +0800 Subject: [PATCH] update the code style --- docs/chapter_data_structure/data_and_memory.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/chapter_data_structure/data_and_memory.md b/docs/chapter_data_structure/data_and_memory.md index 0f087a15..3daeb550 100644 --- a/docs/chapter_data_structure/data_and_memory.md +++ b/docs/chapter_data_structure/data_and_memory.md @@ -92,9 +92,9 @@ comments: true ```typescript title="" /* 使用多种「基本数据类型」来初始化「数组」 */ - const numbers: number[] = [] - const characters: string[] = [] - const booleans: boolean[] = [] + const numbers: number[] = []; + const characters: string[] = []; + const booleans: boolean[] = []; ``` === "C"