From f91c6f068f6006a949cca6aeeba1a430708aa9d2 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Mon, 29 Jan 2018 13:15:43 -0500 Subject: [PATCH] Remove old chars --- docs/api/scheme/cyclone/match.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/api/scheme/cyclone/match.md b/docs/api/scheme/cyclone/match.md index f4094017..352d0b49 100644 --- a/docs/api/scheme/cyclone/match.md +++ b/docs/api/scheme/cyclone/match.md @@ -135,9 +135,9 @@ the pattern syntax. The usage is `(= field pat)`, where procedure of one argument, which is applied to the value to match to generate a new value to match against `pat`. -;;> Thus the pattern `(and (= car x) (= cdr y))` is equivalent -;;> to `(x . y)`, except it will result in an immediate error -;;> if the value isn't a pair. +Thus the pattern `(and (= car x) (= cdr y))` is equivalent +to `(x . y)`, except it will result in an immediate error +if the value isn't a pair. (match '(1 . 2) ((= car x) x)) (match 4 ((= square x) x))