]> gitweb.factorcode.org Git - factor.git/commitdiff
fix help for new-threaded-server
authorDoug Coleman <erg@jobim.local>
Sun, 31 May 2009 00:24:11 +0000 (19:24 -0500)
committerDoug Coleman <erg@jobim.local>
Sun, 31 May 2009 00:24:11 +0000 (19:24 -0500)
basis/io/servers/connection/connection-docs.factor

index 872f3166c2b841c941758a1fecd68404ba36e2c9..0e8a8576fb8d78abc4493bd40e3bc47f5fc4aecb 100644 (file)
@@ -79,7 +79,7 @@ HELP: threaded-server
 { $class-description "The class of threaded servers. New instances are created with " { $link <threaded-server> } ". This class may be subclassed, and instances of subclasses should be created with " { $link new-threaded-server } ". See " { $link "server-config" } " for slot documentation." } ;
 
 HELP: new-threaded-server
-{ $values { "class" class } { "threaded-server" threaded-server } }
+{ $values { "encoding" "an encoding descriptor" } { "class" class } { "threaded-server" threaded-server } }
 { $description "Creates a new instance of a subclass of " { $link threaded-server } ". Subclasses can implement the " { $link handle-client* } " generic word." } ;
 
 HELP: <threaded-server>