1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

orm: fix a typo (#12131)

This commit is contained in:
Yeuda By 2021-10-10 03:47:35 +03:00 committed by GitHub
parent 3647fc6633
commit 8d5931c96c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -149,7 +149,7 @@ pub interface Connection {
update(table string, data QueryData, where QueryData) ?
delete(table string, where QueryData) ?
create(table string, fields []TableField) ?
drop(talbe string) ?
drop(table string) ?
last_id() Primitive
}