From 8ce3f6f1453883acd4aecd4557b101f613583d1d Mon Sep 17 00:00:00 2001 From: Kevin Newton Date: Fri, 7 Jun 2024 09:26:55 -0400 Subject: [PATCH] Trim trailing spaces in base.rb --- lib/error_highlight/base.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/error_highlight/base.rb b/lib/error_highlight/base.rb index e98d81a..81b1b57 100644 --- a/lib/error_highlight/base.rb +++ b/lib/error_highlight/base.rb @@ -749,7 +749,7 @@ def prism_spot_call_for_args def prism_spot_local_variable_operator_write_for_name prism_location(@node.binary_operator_loc.chop) end - + # Example: # x += 1 # ^ @@ -842,7 +842,7 @@ def prism_spot_constant_path prism_location(location) end end - + # Example: # Foo::Bar += 1 # ^^^^^^^^