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

[오탈자 신고] 클로져-후행 클로저 축약-Bad 경우의 예제코드 오류 #78

Open
anjiniii opened this issue Nov 7, 2024 · 0 comments

Comments

@anjiniii
Copy link
Member

anjiniii commented Nov 7, 2024

이슈 중복 확인

확인했습니다.

카테고리

클로져-후행 클로저 축약

내용

클로져 항목의 후행 클로저 축약에서 Bad에 해당하는 예제코드에 오류가 있어 신고합니다!
현재는 잘못된 괄호 사용으로 실행할 수 없는 코드로 작성되어 있습니다.
이를 in 으로 변경하면 될 것 같습니다!

현재:

someFunctionThatTakesAClosure(closure: { (arguInt: Int) -> Void)
    // function body goes here
})

변경 후:

someFunctionThatTakesAClosure(closure: { (arguInt: Int) -> Void in
    // function body goes here
})

추가로 '클로져'와 '클로저'를 하나로 통일해도 좋을 것 같습니다!

@anjiniii anjiniii changed the title [오탈자 신고] 클로져-후행 클로저 축약-예제코드 Bad ❌ [오탈자 신고] 클로져-후행 클로저 축약-Bad 경우의 예제코드 오류 Nov 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant