Skip to content

Commit 8a9ae85

Browse files
committed
fix(chore): Rubocop autocorrect
1 parent fe13228 commit 8a9ae85

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/@jsii/ruby-runtime/lib/jsii/object/dynamic_invocation.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def respond_to_missing?(symbol, include_private = false)
3030
def valid_jsii_method_name?(symbol)
3131
str_name = symbol.to_s
3232
return false if str_name.start_with?('to_')
33-
33+
3434
# JSII members are alphanumeric + underscores, with an optional trailing '=' for setters
3535
!!str_name.match(/^[a-zA-Z_][a-zA-Z0-9_]*=?$/)
3636
end

0 commit comments

Comments
 (0)