]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/qw/qw-docs.factor
factor: trim using lists
[factor.git] / extra / qw / qw-docs.factor
index 3dfffbeeca8820287f97689d393bbfc1d5ae444a..8ae8f4f7e9e42d11bfbbb9e80542b1c7589a2d8a 100644 (file)
@@ -1,14 +1,15 @@
-! (c)2009 Joe Groff bsd license
-USING: help.markup help.syntax multiline ;
+! Copyright (C) 2009 Joe Groff.
+! See http://factorcode.org/license.txt for BSD license.
+USING: help.markup help.syntax ;
 IN: qw
 
 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" }""" }
+{ $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\" }" }
 } ;
 
 ARTICLE: "qw" "Quoted words"