From 8843a885039d719a657e4a2863c52f65fbcbda52 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Sun, 6 Jun 2021 20:41:42 +0800 Subject: [PATCH] Fix typo in column.go (#1908) Avaiable -> Available Co-authored-by: Lunny Xiao Reviewed-on: https://gitea.com/xorm/xorm/pulls/1908 Reviewed-by: Lunny Xiao Co-authored-by: Ikko Ashimine Co-committed-by: Ikko Ashimine --- schemas/column.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/column.go b/schemas/column.go index 5808b84d..24b53802 100644 --- a/schemas/column.go +++ b/schemas/column.go @@ -24,7 +24,7 @@ const ( type Column struct { Name string TableName string - FieldName string // Avaiable only when parsed from a struct + FieldName string // Available only when parsed from a struct SQLType SQLType IsJSON bool Length int