]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/uuid/uuid-docs.factor
factor: trim using lists
[factor.git] / basis / uuid / uuid-docs.factor
index ad8ddba5da7aece9f19546c36c4f51b57f484037..73ba548180264674b57988585faf803e41edd01c 100644 (file)
@@ -1,32 +1,31 @@
-
-USING: help.syntax help.markup kernel prettyprint sequences strings ;
+USING: help.markup help.syntax strings ;
 
 IN: uuid
 
 HELP: uuid1
 { $values { "string" "a UUID string" } }
-{ $description 
+{ $description
     "Generates a UUID (version 1) from the host ID, sequence number, "
     "and current time."
 } ;
 
 HELP: uuid3
 { $values { "namespace" string } { "name" string } { "string" "a UUID string" } }
-{ $description 
+{ $description
     "Generates a UUID (version 3) from the MD5 hash of a namespace "
     "UUID and a name."
 } ;
 
 HELP: uuid4
 { $values { "string" "a UUID string" } }
-{ $description 
-    "Generates a UUID (version 4) from random bits." 
+{ $description
+    "Generates a UUID (version 4) from random bits."
 } ;
 
 HELP: uuid5
 { $values { "namespace" string } { "name" string } { "string" "a UUID string" } }
-{ $description 
-    "Generates a UUID (version 5) from the SHA-1 hash of a namespace " 
+{ $description
+    "Generates a UUID (version 5) from the SHA-1 hash of a namespace "
     "UUID and a name."
 } ;
 
@@ -34,7 +33,7 @@ HELP: uuid5
 ARTICLE: "uuid" "UUID (Universally Unique Identifier)"
 "The " { $vocab-link "uuid" } " vocabulary is used to generate UUIDs. "
 "The below words can be used to generate version 1, 3, 4, and 5 UUIDs as specified in RFC 4122."
-$nl 
+$nl
 "If all you want is a unique ID, you should probably call " { $link uuid1 } " or " { $link uuid4 } "."
 { $subsections
     uuid1
@@ -45,5 +44,3 @@ $nl
 ;
 
 ABOUT: "uuid"
-
-