Skip to content

Commit

Permalink
Merge branch 'master' into extract_ivars
Browse files Browse the repository at this point in the history
  • Loading branch information
tk0miya committed Jun 15, 2023
2 parents f67f8dc + d456a5e commit d16361f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
20 changes: 11 additions & 9 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@ GEM
language_server-protocol (3.17.0.3)
marcel (1.0.2)
minitest (5.18.0)
parallel (1.22.1)
parser (3.2.2.0)
parallel (1.23.0)
parser (3.2.2.3)
ast (~> 2.4.1)
racc
power_assert (2.0.3)
prettier_print (1.2.1)
prime (0.1.2)
Expand All @@ -40,13 +41,14 @@ GEM
psych (4.0.6)
stringio
public_suffix (5.0.1)
racc (1.7.1)
rainbow (3.1.1)
rake (13.0.6)
rake-compiler (1.2.2)
rake-compiler (1.2.3)
rake
rdoc (6.4.0)
psych (>= 4.0.0)
regexp_parser (2.8.0)
regexp_parser (2.8.1)
rexml (3.2.5)
rspec (3.12.0)
rspec-core (~> 3.12.0)
Expand All @@ -61,17 +63,17 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-support (3.12.0)
rubocop (1.50.2)
rubocop (1.52.1)
json (~> 2.3)
parallel (~> 1.10)
parser (>= 3.2.0.0)
parser (>= 3.2.2.3)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.28.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.28.0)
rubocop-ast (1.29.0)
parser (>= 3.2.1.0)
rubocop-rubycw (0.1.6)
rubocop (~> 1.0)
Expand All @@ -83,12 +85,12 @@ GEM
singleton (0.1.1)
sorbet-runtime (0.5.10827)
stackprof (0.2.25)
stringio (3.0.6)
stringio (3.0.7)
strong_json (2.1.2)
syntax_tree (6.1.1)
prettier_print (>= 1.2.0)
tempfile (0.1.3)
test-unit (3.5.9)
test-unit (3.6.0)
power_assert
unicode-display_width (2.4.2)

Expand Down
4 changes: 2 additions & 2 deletions sig/parser.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module RBS
class Parser
# Parse a method type and return it
#
# When `range` keyword is specified, it starts parsing from the `begin` to the `endo` the range.
# When `range` keyword is specified, it starts parsing from the `begin` to the `end` of the range.
#
# ```ruby
# RBS::Parser.parse_method_type("() -> void") # => `() -> void`
Expand All @@ -25,7 +25,7 @@ module RBS

# Parse a type and return it
#
# When `range` keyword is specified, it starts parsing from the `begin` to the `endo` the range.
# When `range` keyword is specified, it starts parsing from the `begin` to the `end` of the range.
#
# ```ruby
# RBS::Parser.parse_type("String") # => `String`
Expand Down

0 comments on commit d16361f

Please sign in to comment.