]> gitweb.factorcode.org Git - factor.git/commitdiff
fix typecheck error. Error was caused by using "stdio" instead of stdio
authorChris Double <chris.double@double.co.nz>
Wed, 29 Dec 2004 03:12:37 +0000 (03:12 +0000)
committerChris Double <chris.double@double.co.nz>
Wed, 29 Dec 2004 03:12:37 +0000 (03:12 +0000)
symbol.

contrib/cont-responder/cont-utils.factor
contrib/cont-responder/live-updater-responder.factor

index bd42b38dce612abea95839c6f79e21c243ede267..0ed17a4117bb98e352880f805b4a7e2f83698621 100644 (file)
@@ -85,7 +85,7 @@ USE: html
   #! Run the quotation inside an HTML stream wrapped
   #! around stdio.
   <pre> 
-    "stdio" get <html-stream> [
+    stdio get <html-stream> [
       call
     ] with-stream
   </pre> ;
index 453a5e2a8fd3055bbe65ac6b2705614aaeffd9cb..1db05950cb7279dd2b63bf806f3af5853272900a 100644 (file)
@@ -41,7 +41,7 @@ USE: prettyprint
   <namespace> [
     "responder" "inspect" put
     <pre> 
-        "stdio" get <html-stream> [   
+        stdio get <html-stream> [   
           apropos.
         ] with-stream              
     </pre>