From 9a581383ae5cd2384811bdd298d850f6d57382cb Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Mon, 12 Jun 2023 12:55:17 -0700 Subject: [PATCH] Use solidus/reverse solidus for range descriptions, instead of slash/backslash. --- lib/ebnf/writer.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ebnf/writer.rb b/lib/ebnf/writer.rb index 2f8b229..f3b85e9 100644 --- a/lib/ebnf/writer.rb +++ b/lib/ebnf/writer.rb @@ -49,8 +49,8 @@ class Writer 0x20 => 'space', 0x22 => 'dquote', 0x27 => 'apos', - 0x2F => 'slash', - 0x5C => 'back slash', + 0x2F => 'solidus', + 0x5C => 'reverse solidus', 0x60 => 'grave', 0x7F => 'delete', 0x80 => 'padding character',