Fix sqlite "regexp" function name in documentation

This commit is contained in:
Tim Retout 2016-03-24 15:58:39 +00:00
parent 76e335f60b
commit 7b2244eaa4
1 changed files with 1 additions and 1 deletions

2
doc.go
View File

@ -102,7 +102,7 @@ call RegisterFunction from ConnectHook.
sql.Register("sqlite3_with_go_func",
&sqlite3.SQLiteDriver{
ConnectHook: func(conn *sqlite3.SQLiteConn) error {
return conn.RegisterFunc("regex", regex, true)
return conn.RegisterFunc("regexp", regex, true)
},
})