fix two typos

This commit is contained in:
张勇
2019-05-27 16:38:30 +08:00
parent f2be6af2ca
commit 3c046a4dbf
2 changed files with 2 additions and 2 deletions

View File

@@ -66,7 +66,7 @@ func getTableName(val reflect.Value) string {
return snakeString(reflect.Indirect(val).Type().Name())
}
// get table engine, mysiam or innodb.
// get table engine, myisam or innodb.
func getTableEngine(val reflect.Value) string {
fun := val.MethodByName("TableEngine")
if fun.IsValid() {