orm: fix a typo (#12131)

pull/12121/head
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
1 changed files with 1 additions and 1 deletions

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
}