From 5208f8bf4f350679d429e1379af46b347fed3341 Mon Sep 17 00:00:00 2001
From: John Benediktsson <mrjbq7@gmail.com>
Date: Mon, 3 Nov 2014 22:26:22 -0800
Subject: [PATCH] furnace.utilities: fix docs for resolve-word-path.

---
 basis/furnace/utilities/utilities-docs.factor | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/basis/furnace/utilities/utilities-docs.factor b/basis/furnace/utilities/utilities-docs.factor
index 1e5d89f889..74b01ce75f 100644
--- a/basis/furnace/utilities/utilities-docs.factor
+++ b/basis/furnace/utilities/utilities-docs.factor
@@ -1,5 +1,5 @@
 USING: assocs help.markup help.syntax kernel
-quotations sequences strings urls xml.data http ;
+quotations sequences strings urls xml.data http words ;
 IN: furnace.utilities
 
 HELP: adjust-redirect-url
@@ -79,9 +79,9 @@ HELP: user-agent
 { $values { "user-agent" { $maybe string } } }
 { $description "Outputs the user agent reported by the client for the current request." } ;
 
-HELP: vocab-path
-{ $values { "vocab" "a vocabulary specifier" } { "path" "a pathname string" } }
-{ $description "Outputs the full pathname of the vocabulary's source directory." } ;
+HELP: resolve-word-path
+{ $values { "word" word } { "path/f" { $maybe "a pathname string" } } }
+{ $description "Outputs the full pathname of the word's vocabulary's directory." } ;
 
 HELP: exit-with
 { $values { "value" object } }
@@ -117,7 +117,7 @@ ARTICLE: "furnace.misc" "Miscellaneous Furnace features"
 }
 "Vocabulary root-relative resources:"
 { $subsections
-    vocab-path
+    resolve-word-path
     resolve-template-path
 }
 "Early return from a responder:"