Fix typo 'parameteres' to parameters (#7)

This commit is contained in:
Youngteac Hong 2020-11-19 01:14:24 +09:00 committed by GitHub
parent 0dff5c1417
commit c656d0887f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1752,7 +1752,7 @@ return nil
### Naked 매개변수를 피해라 (Avoid Naked Parameters)
함수 호출에서의 naked parameteres는 가독성을 떨어 뜨릴 수 있다. 의미가 명확하지 않은 경우, C언어 스타일의 주석 (`/* ... */`)을 추가하기 바란다.
함수 호출에서의 naked parameters는 가독성을 떨어 뜨릴 수 있다. 의미가 명확하지 않은 경우, C언어 스타일의 주석 (`/* ... */`)을 추가하기 바란다.
<table>
<thead><tr><th>Bad</th><th>Good</th></tr></thead>