From 4372efc8f0bcb214c6825f7be98f75a69a055527 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sat, 30 Aug 2008 10:15:09 -0500 Subject: [PATCH] help lint fix nil? --- extra/lists/lists-docs.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extra/lists/lists-docs.factor b/extra/lists/lists-docs.factor index 15faf8d002..cd2e6f7081 100644 --- a/extra/lists/lists-docs.factor +++ b/extra/lists/lists-docs.factor @@ -1,6 +1,6 @@ ! Copyright (C) 2006 Chris Double. ! See http://factorcode.org/license.txt for BSD license. -USING: help.markup help.syntax ; +USING: kernel help.markup help.syntax ; IN: lists @@ -23,7 +23,7 @@ HELP: nil { $description "Returns a symbol representing the empty list" } ; HELP: nil? -{ $values { "cons" "a cons object" } { "?" "a boolean" } } +{ $values { "object" object } { "?" "a boolean" } } { $description "Return true if the cons object is the nil cons." } ; HELP: list? ( object -- ? )