From 5661c0855fd4bfefd25a188fe9ca0ebb6c543bed Mon Sep 17 00:00:00 2001 From: Laurent Dami Date: Sun, 20 Jul 2014 20:32:47 +0200 Subject: [PATCH] fix typo --- lib/DBD/SQLite.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index c5d0649..8414dd8 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -1756,7 +1756,7 @@ current number of seconds since the epoch: $dbh->sqlite_create_function( 'now', 0, sub { return time } ); -After this, it could be use from SQL as: +After this, it could be used from SQL as: INSERT INTO mytable ( now() );