Skip to content

Commit

Permalink
Apply RuboCop autocorrect
Browse files Browse the repository at this point in the history
- RBS/Layout/OverloadIndentation
- RBS/Layout/IndentationWidth
  • Loading branch information
ksss committed Jun 17, 2024
1 parent c3c352b commit 704489a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions gems/activesupport/6.0/activesupport.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,9 @@ module ActiveSupport
def minus_with_duration: (Time | self arg0) -> Float
| (Numeric arg0) -> self
def minus_without_coercion: (Time | self arg0) -> Float
| (Numeric arg0) -> self
| (Numeric arg0) -> self
def minus_without_duration: (Time | self arg0) -> Float
| (Numeric arg0) -> self
| (Numeric arg0) -> self
def monday?: () -> bool
def next_day: () -> self
def next_month: () -> self
Expand Down Expand Up @@ -375,13 +375,13 @@ module ActiveSupport
end

class NilClass
def try: () { (untyped) -> untyped } -> nil
| () { () -> untyped } -> nil
| (Object::name method_name, *untyped args) ?{ (*untyped) -> untyped } -> nil
def try: () { (untyped) -> untyped } -> nil
| () { () -> untyped } -> nil
| (Object::name method_name, *untyped args) ?{ (*untyped) -> untyped } -> nil

def try!: () { (untyped) -> untyped } -> nil
| () { () -> untyped } -> nil
| (Object::name method_name, *untyped args) ?{ (*untyped) -> untyped } -> nil
def try!: () { (untyped) -> untyped } -> nil
| () { () -> untyped } -> nil
| (Object::name method_name, *untyped args) ?{ (*untyped) -> untyped } -> nil

end

Expand Down

0 comments on commit 704489a

Please sign in to comment.