From dbbcf74cdade6213efd334e4db44ccbb37d07b89 Mon Sep 17 00:00:00 2001 From: otoburb Date: Tue, 15 Dec 2009 18:12:48 -0500 Subject: [PATCH] Updated post-data slot names in http-docs.factor --- basis/http/http-docs.factor | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/basis/http/http-docs.factor b/basis/http/http-docs.factor index 0dca26fd32..2de2323394 100644 --- a/basis/http/http-docs.factor +++ b/basis/http/http-docs.factor @@ -103,9 +103,10 @@ HELP: post-data $nl "Instances contain the following slots:" { $table - { { $slot "raw" } { "The raw bytes of the POST data" } } - { { $slot "content" } { "The POST data. This can be in a higher-level form, such as an assoc of POST parameters, a string, or an XML document" } } - { { $slot "content-type" } "A MIME type" } + { { $slot "data" } { "The POST data. This can be in a higher-level form, such as an assoc of POST parameters, a string, or an XML document" } } + { { $slot "params" } { "Parameters passed in the POST request." } } + { { $slot "content-type" } { "A MIME type" } } + { { $slot "content-encoding" } { "Encoding used for the POST data" } } } } ; HELP: set-header