Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify blanklines between objects in Blank Lines section #68

Merged
merged 1 commit into from
Aug 28, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README-KO.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ Scala는 매우 강력하며 여러가지 페러다임에 적용 가능한 언
- 예외: 연속되는 변수 선언 사이 아무런 코드도 없다면 빈 줄은 옵션입니다. 이런 빈 줄들은 논리적인 그룹을 만들 때 사용 될 수 있습니다.
- 함수 안에서 빈 줄을 삽입하여 논리적인 그룹을 만들 수 있습니다.
- 첫 번째 맴버 앞이나 마지막 맴버 뒤에 빈 줄이 있을 수 있습니다.
- 한개 또는 두개의 빈 줄을 사용하여 Class 선언들을 분리합니다.
- 한개 또는 두개의 빈 줄을 사용하여 class 혹은 object 선언들을 분리합니다.
- 과도한 수의 빈 줄은 권장하지 않습니다.


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.


Expand Down