From be0c1171add8f63066f75b1269af5c33cd13dcf4 Mon Sep 17 00:00:00 2001 From: Yang Ming-Tian <1178715749@qq.com> Date: Mon, 3 Jun 2024 12:49:52 +0800 Subject: [PATCH] Update course9/lecture_en.md Co-authored-by: Zihang Ye --- course9/lecture_en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/course9/lecture_en.md b/course9/lecture_en.md index cb9d227..1c8f49b 100644 --- a/course9/lecture_en.md +++ b/course9/lecture_en.md @@ -22,7 +22,7 @@ In Chapter 8, while studying mutable data structures, we discussed the need for ```moonbit no-check fn make[T]() -> Queue[T] { -{ array: Array::make(5, T::default()), start: 0, end: 0, length: 0 } + { array: Array::make(5, T::default()), start: 0, end: 0, length: 0 } } ```