remove unnecessary spaces around (|) (#2164)

This commit is contained in:
Mark
2023-11-19 08:46:20 -07:00
parent f32b035287
commit 8d9a759a7d
2 changed files with 3 additions and 3 deletions

View File

@@ -783,10 +783,10 @@ test_217_181_290_317 :-
( op(1105,xfy,'|'),
read_from_chars("(a-->b,c|d).", T0),
writeq_term_to_chars(T0, C0),
C0 == "a-->b,c | d",
C0 == "a-->b,c|d",
read_from_chars("[(a|b)].", T1),
writeq_term_to_chars(T1, C1),
C1 == "[(a | b)]",
C1 == "[(a|b)]",
read_from_chars("[a,(b,c)|[]].", T2),
writeq_term_to_chars(T2, C2),
C2 == "[a,(b,c)]"