From 26e931ae34f618c1a5ad5935cceff7372b16f8a2 Mon Sep 17 00:00:00 2001 From: Stormxx Date: Mon, 6 Jul 2020 23:58:31 +0800 Subject: [PATCH] fix a spelling error (#12163) Co-authored-by: techknowlogick --- modules/setting/database.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/setting/database.go b/modules/setting/database.go index 4e84f8f8d1..a0734bc67a 100644 --- a/modules/setting/database.go +++ b/modules/setting/database.go @@ -51,7 +51,7 @@ var ( } ) -// GetDBTypeByName returns the dataase type as it defined on XORM according the given name +// GetDBTypeByName returns the database type as it defined on XORM according the given name func GetDBTypeByName(name string) string { return dbTypes[name] }