fix typo : 유요한 -> 유효한 (#4)

This commit is contained in:
kgeneral 2020-04-21 20:32:22 +09:00 committed by GitHub
parent 16bd3bfd13
commit 2572eab946
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1596,7 +1596,7 @@ func f(list []int) {
### nil은 유효한 슬라이스 (nil is a valid slice)
`nil`은 길이가 0인 유한 슬라이스이다. 이는 다음과 같음을 의미한다:
`nil`은 길이가 0인 유한 슬라이스이다. 이는 다음과 같음을 의미한다:
- 길이가 0인 슬라이스를 명시적으로 반환해서는 안된다. 대신 nil을 반환하라.