]> gitweb.factorcode.org Git - factor.git/commitdiff
kernel: docs example doesn't need prettyprint
authorJohn Benediktsson <mrjbq7@gmail.com>
Wed, 6 Sep 2023 15:56:48 +0000 (08:56 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Wed, 6 Sep 2023 15:56:48 +0000 (08:56 -0700)
core/kernel/kernel-docs.factor

index 041391271a3dce91b06c3ac2d63a811009b3ba7c..107b911a3cc3199114bb678668002f544037a8aa 100644 (file)
@@ -167,12 +167,12 @@ HELP: ?
 { $description "Chooses between two values depending on the boolean value of " { $snippet "?" } "." }
 { $examples
     { $example
-        "USING: io kernel math prettyprint ;"
+        "USING: io kernel math ;"
         "3 4 < \"3 is smaller than 4\" \"3 is not smaller than 4\" ? print"
         "3 is smaller than 4"
     }
     { $example
-        "USING: io kernel math prettyprint ;"
+        "USING: io kernel math ;"
         "4 3 < \"4 is smaller than 3\" \"4 is not smaller than 3\" ? print"
         "4 is not smaller than 3"
     }