summaryrefslogtreecommitdiff
path: root/lib/syntax_suggest/display_code_with_line_numbers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/syntax_suggest/display_code_with_line_numbers.rb')
-rw-r--r--lib/syntax_suggest/display_code_with_line_numbers.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/syntax_suggest/display_code_with_line_numbers.rb b/lib/syntax_suggest/display_code_with_line_numbers.rb
index 23f4b2d1ee..a18d62e54b 100644
--- a/lib/syntax_suggest/display_code_with_line_numbers.rb
+++ b/lib/syntax_suggest/display_code_with_line_numbers.rb
@@ -14,8 +14,8 @@ module SyntaxSuggest
# # =>
# 1
# 2 def cat
- # ❯ 3 Dir.chdir
- # ❯ 4 end
+ # > 3 Dir.chdir
+ # > 4 end
# 5 end
# 6
class DisplayCodeWithLineNumbers
@@ -50,7 +50,7 @@ module SyntaxSuggest
private def format(contents:, number:, empty:, highlight: false)
string = +""
string << if highlight
- "❯ "
+ "> "
else
" "
end