Skip to content

Commit d543a0a

Browse files
committed
Allow Prism non-ASCII AST characters in docs
1 parent bb0cee5 commit d543a0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tool/jt.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2696,7 +2696,7 @@ def check_config_header
26962696
def check_documentation
26972697
status = true
26982698
allowed = -> str {
2699-
str.ascii_only? or str.chars.all? { |c| c.ascii_only? or %w[± ].include?(c) }
2699+
str.ascii_only? or str.chars.all? { |c| c.ascii_only? or %w[± ].include?(c) }
27002700
}
27012701

27022702
`git -C #{TRUFFLERUBY_DIR} ls-files '**/*.md'`.lines.map(&:chomp).each do |file|

0 commit comments

Comments
 (0)