From 0ff15f75a26f53c01328eb388f7e2cebdb2123c1 Mon Sep 17 00:00:00 2001 From: Leo Lyu Date: Fri, 18 May 2018 10:49:08 +0800 Subject: [PATCH] =?UTF-8?q?Update=20=E4=BB=A3=E7=A0=81=E5=8F=AF=E8=AF=BB?= =?UTF-8?q?=E6=80=A7.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix typo --- notes/代码可读性.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/代码可读性.md b/notes/代码可读性.md index 744b8bab..fdc7e2c6 100644 --- a/notes/代码可读性.md +++ b/notes/代码可读性.md @@ -95,7 +95,7 @@ Map scoreMap = new HashMap<>(); ``` ```java -// Student' name -> Student's score +// Student's name -> Student's score Map scoreMap = new HashMap<>(); ```