From 7999e72aecc3c5bc4019d43dc4697f49678cc3b4 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Mon, 30 Jul 2018 12:02:42 -0500 Subject: [PATCH] Revert "lists: Add list literal doc example." This reverts commit 47408528d0374dd9b015a0b8d06b5d7157652890. --- basis/lists/lists-docs.factor | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/basis/lists/lists-docs.factor b/basis/lists/lists-docs.factor index 67e36787f2..28cd82c639 100644 --- a/basis/lists/lists-docs.factor +++ b/basis/lists/lists-docs.factor @@ -28,7 +28,6 @@ ARTICLE: "lists-protocol" "The list protocol" ARTICLE: "lists-strict" "Constructing strict lists" "Strict lists are simply cons cells where the car and cdr have already been evaluated. These are the lists of Lisp. To construct a strict list, the following words are provided:" { $subsections - \ L{ cons swons sequence>list @@ -63,15 +62,6 @@ ARTICLE: "lists-manipulation" "Manipulating lists" lcut } ; -HELP: L{ -{ $syntax "L{ val1 val2... }" } -{ $values { "val1" object } { "val2" object } } -{ $example - "USING: lists prettyprint ; L{ 1 2 3 } ." - "L{ 1 2 3 }" -} -{ $description "Constructs a list literal from a sequence." } ; - HELP: cons { $values { "car" "the head of the list cell" } { "cdr" "the tail of the list cell" } { "cons-state" list } } { $description "Constructs a cons cell." } ;