pr8080 and pr8081

svn: r3170
This commit is contained in:
Jay McCarthy 2006-06-01 13:36:22 +00:00
parent 5a1e1f72ac
commit 5c11b23cae
2 changed files with 4 additions and 4 deletions

View File

@ -236,10 +236,10 @@ Note: Xexpr is the only important one to understand. Even then,
"<![CDATA[~a]]>" with proper quoting. If this is an incorrect
assumption, this library will generate invalid XML.
> Entity = (make-entity (U Nat Symbol))
(define-struct entity (text))
> Entity = (make-entity Location Location (U Nat Symbol))
(define-struct (entity struct:source) (text))
> Processing-instruction = (make-pi Location Location String (list String))
> Processing-instruction = (make-pi Location Location String String)
(define-struct (pi struct:source) (target-name instruction))
> Comment = (make-comment String)

View File

@ -74,7 +74,7 @@
; Entity = (make-entity Location Location (U Nat Symbol))
(define-struct (entity source) (text))
; Processing-instruction = (make-pi Location Location String (list String))
; Processing-instruction = (make-pi Location Location String String)
; also represents XMLDecl
(define-struct (pi source) (target-name instruction))