From 834e59207f8e45670ae21da610f27500d215ae99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Fri, 27 Mar 2020 04:53:24 +0100 Subject: [PATCH] Add note --- src/parse/terms.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/parse/terms.rs b/src/parse/terms.rs index a9f3305..eb73a7b 100644 --- a/src/parse/terms.rs +++ b/src/parse/terms.rs @@ -702,6 +702,7 @@ mod tests assert_eq!(format_term("f(\na\n+\nb\n,\nc\n+\nd\n)"), "f(a + b, c + d)"); assert_eq!(format_term("f( \t a \t + \t b \t , \t c \t + \t d \t)"), "f(a + b, c + d)"); assert_eq!(format_term("f( \n a \n + \n b \n , \n c \n + \n d \n)"), "f(a + b, c + d)"); + // TODO: test other operators } #[test]