From 38f8050d34c09bdb57825d28a6efd5a31da3575c Mon Sep 17 00:00:00 2001 From: "chris.double" Date: Sat, 9 Sep 2006 05:17:38 +0000 Subject: [PATCH] update tuple-db docs for new 'contrib/tuple-db' require format --- contrib/sqlite/tuple-db.facts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/sqlite/tuple-db.facts b/contrib/sqlite/tuple-db.facts index 3cbf7f6804..a57d450ac2 100644 --- a/contrib/sqlite/tuple-db.facts +++ b/contrib/sqlite/tuple-db.facts @@ -4,9 +4,9 @@ USING: help sqlite tuple-db ; ARTICLE: { "sqlite" "tuple-db-loading" } "Loading" "The quickest way to get up and running with this library is to load it as a module:" -{ $code "\"sqlite\" require\nUSE: sqlite\nUSE: tuple-db\n" } +{ $code "\"contrib/sqlite\" require\nUSE: sqlite\nUSE: tuple-db\n" } "Some simple tests can be run to check that everything is working ok:" -{ $code "\"sqlite\" test-module" } ; +{ $code "\"contrib/sqlite\" test-module" } ; ARTICLE: { "sqlite" "tuple-db-usage" } "Basic Usage" "This library can be used for storing simple Factor tuples in a sqlite database. In its current form the tuples must not contain references to other tuples and should not have a delegate set."