]> gitweb.factorcode.org Git - factor.git/commitdiff
qw: change example
authorJohn Benediktsson <mrjbq7@gmail.com>
Sun, 22 Jan 2023 02:54:31 +0000 (18:54 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sun, 22 Jan 2023 02:54:52 +0000 (18:54 -0800)
extra/qw/qw-docs.factor

index 3c70cfa3c97f3211146f7b651ef78b5908c0982c..35833b018b5123a97ce2e04096a7a870039dc4b1 100644 (file)
@@ -7,9 +7,9 @@ HELP: qw{
 { $syntax "qw{ lorem ipsum }" }
 { $description "Marks the beginning of a literal array of strings. Component strings are delimited by whitespace." }
 { $examples
-{ $unchecked-example "USING: prettyprint qw ;
-qw{ pop quiz my hive of big wild ex tranny jocks } ."
-"{ \"pop\" \"quiz\" \"my\" \"hive\" \"of\" \"big\" \"wild\" \"ex\" \"tranny\" \"jocks\" }" }
+{ $example "USING: prettyprint qw ;
+qw{ a man a plan a canal panama } ."
+"{ \"a\" \"man\" \"a\" \"plan\" \"a\" \"canal\" \"panama\" }" }
 } ;
 
 ARTICLE: "qw" "Quoted words"