From 3c45766c482b1e87c38da493ba3ac800c40ebb31 Mon Sep 17 00:00:00 2001 From: Youngteac Hong Date: Thu, 19 Nov 2020 01:14:36 +0900 Subject: [PATCH] =?UTF-8?q?Fix=20typo=20'=EC=B6=9C=EB=8F=8C'=20to=20'?= =?UTF-8?q?=EC=B6=A9=EB=8F=8C'=20(#6)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 01eec5b..791d211 100644 --- a/README.md +++ b/README.md @@ -1685,7 +1685,7 @@ func f(list []int) { ### 변수의 범위를 줄여라 (Reduce Scope of Variables) -가능한 변수의 범위를 줄여라. 만약 [Reduce Nesting](#reduce-nesting)과의 출돌하는 경우 범위를 줄이면 안된다. +가능한 변수의 범위를 줄여라. 만약 [Reduce Nesting](#reduce-nesting)과의 충돌하는 경우 범위를 줄이면 안된다.
BadGood