From 723696fa3213a1a6d7228e465d03f3c8e236a3af Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 11 Apr 2008 13:04:21 -0500 Subject: [PATCH] update docs on gensym --- core/words/words-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/words/words-docs.factor b/core/words/words-docs.factor index a715aab64f..f259378f7e 100755 --- a/core/words/words-docs.factor +++ b/core/words/words-docs.factor @@ -284,7 +284,7 @@ HELP: HELP: gensym { $values { "word" word } } -{ $description "Creates an uninterned word that is not equal to any other word in the system. Gensyms have an automatically-generated name based on a prefix and an incrementing counter." } +{ $description "Creates an uninterned word that is not equal to any other word in the system." } { $examples { $unchecked-example "gensym ." "G:260561" } } { $notes "Gensyms are often used as placeholder values that have no meaning of their own but must be unique. For example, the compiler uses gensyms to label sections of code." } ;