From 3465b300e9c9ae046093eaaf2916cde1bb05f43b Mon Sep 17 00:00:00 2001 From: krahets Date: Thu, 9 Feb 2023 19:45:35 +0800 Subject: [PATCH] Add the introduction to the reviewers to the index.md --- .../chapter_array_and_linkedlist/list.cs | 1 - docs/chapter_array_and_linkedlist/list.md | 2 +- docs/index.md | 19 +++++++++++++++++-- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/codes/csharp/chapter_array_and_linkedlist/list.cs b/codes/csharp/chapter_array_and_linkedlist/list.cs index 51915618d..dab11d7b9 100644 --- a/codes/csharp/chapter_array_and_linkedlist/list.cs +++ b/codes/csharp/chapter_array_and_linkedlist/list.cs @@ -15,7 +15,6 @@ public class list { /* 初始化列表 */ - // 注意数组的元素类型是 int[] 的包装类 int[] int[] numbers = new int[] { 1, 3, 2, 5, 4 }; List list = numbers.ToList(); Console.WriteLine("列表 list = " + string.Join(",", list)); diff --git a/docs/chapter_array_and_linkedlist/list.md b/docs/chapter_array_and_linkedlist/list.md index d20d37b5a..1c58a0700 100755 --- a/docs/chapter_array_and_linkedlist/list.md +++ b/docs/chapter_array_and_linkedlist/list.md @@ -86,7 +86,7 @@ comments: true /* 初始化列表 */ // 无初始值 List list1 = new (); - // 有初始值(注意数组的元素类型需为 int[] 的包装类 Integer[]) + // 有初始值 int[] numbers = new int[] { 1, 3, 2, 5, 4 }; List list = numbers.ToList(); ``` diff --git a/docs/index.md b/docs/index.md index 0ab257690..f0637c1c7 100644 --- a/docs/index.md +++ b/docs/index.md @@ -64,9 +64,9 @@ hide: **—— 邓俊辉,清华大学计算机系教授** -

致谢

+

参与创作

-感谢本开源书的每一位撰稿人,是他们的无私奉献让这本书变得更好,他们是: +感谢本开源书的每一位撰稿人,是他们的无私奉献让这本书变得更好,他们是(按 contrib.rocks 生成的顺序):

@@ -74,4 +74,19 @@ hide:

+本开源项目的维护与更新离不开各位 Reviewers 的辛勤付出,感谢他们(按首字母顺序): + +
+ + + + + + + + + +
justin-tse
justin-tse

JS / TS
krahets
krahets

Java / Python
nuomi1
nuomi1

Swift
Reanon
Reanon

Go / C
sjinzh
sjinzh

Rust / Zig
+
+ ---