]> gitweb.factorcode.org Git - factor.git/commitdiff
fix typo in gensym reported by mnestic
authorDoug Coleman <doug.coleman@gmail.com>
Thu, 27 Aug 2009 21:10:00 +0000 (16:10 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Thu, 27 Aug 2009 21:10:00 +0000 (16:10 -0500)
core/words/words-docs.factor

index b756c0b681a8ed631de701a3cb98c66890e5051a..c670939c482d3af316486cd3325db0753f251f15 100644 (file)
@@ -219,7 +219,11 @@ HELP: <word> ( name vocab -- word )
 HELP: gensym
 { $values { "word" word } }
 { $description "Creates an uninterned word that is not equal to any other word in the system." }
-{ $examples { $unchecked-example "gensym ." "G:260561" } }
+{ $examples { $example "USING: prettyprint words ;"
+    "gensym ."
+    "( gensym )"
+    }
+}
 { $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." } ;
 
 HELP: bootstrapping?