summaryrefslogtreecommitdiffstats
path: root/store/sql_store.go
diff options
context:
space:
mode:
authorrompic <roman@pickl.eu>2016-05-25 14:19:54 +0200
committerChristopher Speller <crspeller@gmail.com>2016-05-25 08:19:54 -0400
commit20302c6953775ac5f0030456b69e24a472242caa (patch)
treec1e3e5d8785a6a3a075ab19ef5780c6e06b4b836 /store/sql_store.go
parent09863c0b80610f2f3a35cf3caa7c5b66a0c3878e (diff)
downloadchat-20302c6953775ac5f0030456b69e24a472242caa.tar.gz
chat-20302c6953775ac5f0030456b69e24a472242caa.tar.bz2
chat-20302c6953775ac5f0030456b69e24a472242caa.zip
fixed type speical -> special (#3052)
Diffstat (limited to 'store/sql_store.go')
-rw-r--r--store/sql_store.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/store/sql_store.go b/store/sql_store.go
index 0979579df..e45d1ef94 100644
--- a/store/sql_store.go
+++ b/store/sql_store.go
@@ -101,7 +101,7 @@ func NewSqlStore() Store {
}
}
- // This is a speical case for upgrading the schema to the 3.0 user model
+ // This is a special case for upgrading the schema to the 3.0 user model
// ADDED for 3.0 REMOVE for 3.4
if sqlStore.SchemaVersion == "2.2.0" ||
sqlStore.SchemaVersion == "2.1.0" ||
@@ -183,7 +183,7 @@ func NewSqlStore() Store {
}
// ADDED for 3.0 REMOVE for 3.4
-// This is a speical case for upgrading the schema to the 3.0 user model
+// This is a special case for upgrading the schema to the 3.0 user model
func NewSqlStoreForUpgrade30() *SqlStore {
sqlStore := initConnection()