temp-file is in io.files.temp nowadays

Vesa Kaihlavirta 2009-09-26 10:49:57 +03:00
parent be214f9142
commit b844f692b3
1 changed files with 1 additions and 1 deletions

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