www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 974ed8549d95ed41991f26569f3431e00daed718
parent b1b7104dba33b1718d5e9c0904d40a84ef1b7f24
Author: Georges Dupéron <georges.duperon@gmail.com>
Date:   Sun,  2 Oct 2016 03:55:20 +0200

Changed the documentation section for xlist.

Diffstat:
Minfo.rkt | 8+++++---
Mscribblings/xlist.scrbl | 3++-
2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/info.rkt b/info.rkt @@ -15,7 +15,9 @@ "racket-doc" "typed-racket-doc" "scribble-math")) -(define scribblings '(("scribblings/xlist.scrbl" ()))) -(define pkg-desc "Description Here") -(define version "0.0") +(define scribblings '(("scribblings/xlist.scrbl" () ("Data Structures")))) +(define pkg-desc + (string-append "Fancy lists, with bounded or unbounded repetition of" + " elements. Can be used as a type or match pattern.")) +(define version "0.9") (define pkg-authors '(georges)) diff --git a/scribblings/xlist.scrbl b/scribblings/xlist.scrbl @@ -29,7 +29,8 @@ To use the type expander, you must first require the @defform*[#:kind "type-expander" #:literals (^ * + - ∞ once) [(xlist τᵢ ...) - (xlist τᵢ ... . rest)] + (xlist τᵢ ... . rest) + (xlist τᵢ ... #:rest rest)] #:grammar [(τᵢ type repeated-type)