Merge branch 'for-slava' of git://gitorious.org/factor/factor

db4
Slava Pestov 2009-09-26 03:00:01 -05:00
commit 257bf877e7
1 changed files with 1 additions and 1 deletions
basis/db/tuples

View File

@ -230,7 +230,7 @@ T{ book
} book set
""" }
"Now we've created a book. Let's save it to the database."
{ $code """USING: db db.sqlite fry io.files ;
{ $code """USING: db db.sqlite fry io.files.temp ;
: with-book-tutorial ( quot -- )
'[ "book-tutorial.db" temp-file <sqlite-db> _ with-db ] call ; inline