diff options
author | Schneems <[email protected]> | 2023-12-04 16:59:10 -0600 |
---|---|---|
committer | git <[email protected]> | 2023-12-05 17:51:29 +0000 |
commit | 6d39d6d2143f7b910f310de0ff92772839ac72a2 (patch) | |
tree | 7b2071ab9e74334b2a18c05068b3e8a81938c692 /lib/syntax_suggest/code_block.rb | |
parent | 62c96959114ea165f7434da9edc42d15e4aaebfa (diff) |
[ruby/syntax_suggest] Update docs, clean up PR
Removes or updates mentions of Ripper
https://github.com/ruby/syntax_suggest/commit/08aaa3f50a
Diffstat (limited to 'lib/syntax_suggest/code_block.rb')
-rw-r--r-- | lib/syntax_suggest/code_block.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/syntax_suggest/code_block.rb b/lib/syntax_suggest/code_block.rb index 61e7986da4..d842890300 100644 --- a/lib/syntax_suggest/code_block.rb +++ b/lib/syntax_suggest/code_block.rb @@ -81,7 +81,7 @@ module SyntaxSuggest # lines then the result cannot be invalid # # That means there's no reason to re-check all - # lines with ripper (which is expensive). + # lines with the parser (which is expensive). # Benchmark in commit message @valid = if lines.all? { |l| l.hidden? || l.empty? } true |