From c0f2791b1a05932b4eccd524d1a8412d6f921b54 Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Tue, 29 Dec 2015 13:02:01 -0800 Subject: [PATCH] more --- scribblings/pollen-rkt.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scribblings/pollen-rkt.scrbl b/scribblings/pollen-rkt.scrbl index d0fdbf6..1299670 100644 --- a/scribblings/pollen-rkt.scrbl +++ b/scribblings/pollen-rkt.scrbl @@ -395,7 +395,7 @@ This function will be used within a @racket[decode] function (more on that below Our list of elements could contain sequences like @racket['("\n" "\n" "\n")], which should mean the same thing as @racket["\n\n\n"]. So first, we'll combine adjacent newlines with @racket[merge-newlines]. -@racket[filter-split] will divide a list into sublists based on a certain test. The result will be a list of lists, each representing the contents of an @racket['li] tag. We'll convert any paragraphs that are inside the list items. Finally we'll wrap each of these lists of paragraphs in an @racket['li] tag. +@racket[filter-split] will divide a list into sublists based on a test for the list-item delimiter. The result will be a list of lists, each representing the contents of an @racket['li] tag. We'll convert any paragraphs that are inside the list items. Finally we'll wrap each of these lists of paragraphs in an @racket['li] tag. @chunk[ (define (detect-list-items elems)