From 423812df6278bffdb4125e36d1144fc9ddcb1d59 Mon Sep 17 00:00:00 2001 From: hyukjinkwon Date: Tue, 24 Jul 2018 12:21:42 +0800 Subject: [PATCH] Clarify blanklines between objects in Blank Lines section --- README-KO.md | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README-KO.md b/README-KO.md index 67304c6..7a98863 100644 --- a/README-KO.md +++ b/README-KO.md @@ -263,7 +263,7 @@ Scala는 매우 강력하며 여러가지 페러다임에 적용 가능한 언 - 예외: 연속되는 변수 선언 사이 아무런 코드도 없다면 빈 줄은 옵션입니다. 이런 빈 줄들은 논리적인 그룹을 만들 때 사용 될 수 있습니다. - 함수 안에서 빈 줄을 삽입하여 논리적인 그룹을 만들 수 있습니다. - 첫 번째 맴버 앞이나 마지막 맴버 뒤에 빈 줄이 있을 수 있습니다. -- 한개 또는 두개의 빈 줄을 사용하여 Class 선언들을 분리합니다. +- 한개 또는 두개의 빈 줄을 사용하여 class 혹은 object 선언들을 분리합니다. - 과도한 수의 빈 줄은 권장하지 않습니다. diff --git a/README.md b/README.md index 9c66d66..feef189 100644 --- a/README.md +++ b/README.md @@ -265,7 +265,7 @@ In general: - Exception: A blank line between two consecutive fields (having no other code between them) is optional. Such blank lines are used as needed to create logical groupings of fields. - Within method bodies, as needed to create logical groupings of statements. - Optionally before the first member or after the last member of the class (neither encouraged nor discouraged). -- Use one or two blank line(s) to separate class definitions. +- Use one or two blank line(s) to separate class or object definitions. - Excessive number of blank lines is discouraged.