From 792458f625f2db9e49e7d00ef23a76aa27af25ef Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Mon, 9 Sep 2013 14:43:59 +0200 Subject: [PATCH] In the example.lisp package no use for full notation. --- lib/abnf/example.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/abnf/example.lisp b/lib/abnf/example.lisp index c591388..0892023 100644 --- a/lib/abnf/example.lisp +++ b/lib/abnf/example.lisp @@ -25,9 +25,9 @@ NILVALUE = \"-\" " "A timestamp ABNF grammar.") -(let ((scanner (abnf:parse-abnf-grammar *timestamp-abnf* - :timestamp - :registering-rules '(:full-date)))) +(let ((scanner (parse-abnf-grammar *timestamp-abnf* + :timestamp + :registering-rules '(:full-date)))) (register-groups-bind (date) (scanner "2013-09-08T00:02:03.123456Z+02:00") date))