From dbb8f97eaa4c6c7e36c797c7b1d9a803db2623ea Mon Sep 17 00:00:00 2001 From: ydah Date: Wed, 4 Sep 2024 21:55:33 +0900 Subject: [PATCH] [ruby/prism] essentialy ==> essentially https://github.com/ruby/prism/commit/9c68c01bcd --- lib/prism/parse_result.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/prism/parse_result.rb b/lib/prism/parse_result.rb index c3b4bc8887..ae026b42ac 100644 --- a/lib/prism/parse_result.rb +++ b/lib/prism/parse_result.rb @@ -155,7 +155,7 @@ module Prism # Specialized version of `code_units_column` that does not depend on # `code_units_offset`, which is a more expensive operation. This is - # essentialy the same as `Prism::Source#column`. + # essentially the same as `Prism::Source#column`. def code_units_column(byte_offset, encoding) byte_offset - line_start(byte_offset) end