Reports method calls where the number of arguments passed (including blocks) doesn't match the method's signature. The method's signature is taken from either of:

일부 상황에서 빠른 수정을 사용하여 누락된 인수를 추가하거나 불필요한 인수를 제거할 수 있습니다.

예:

def example
end

# 인수가 너무 많습니다
example(true)