summaryrefslogtreecommitdiffstats
path: root/api
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 /api
parent09863c0b80610f2f3a35cf3caa7c5b66a0c3878e (diff)
downloadchat-20302c6953775ac5f0030456b69e24a472242caa.tar.gz
chat-20302c6953775ac5f0030456b69e24a472242caa.tar.bz2
chat-20302c6953775ac5f0030456b69e24a472242caa.zip
fixed type speical -> special (#3052)
Diffstat (limited to 'api')
-rw-r--r--api/user.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/user.go b/api/user.go
index f6c7c25f5..c1b40852d 100644
--- a/api/user.go
+++ b/api/user.go
@@ -227,7 +227,7 @@ func CreateUser(user *model.User) (*model.User, *model.AppError) {
user.Roles = ""
- // Below is a speical case where the first user in the entire
+ // Below is a special case where the first user in the entire
// system is granted the system_admin role instead of admin
if result := <-Srv.Store.User().GetTotalUsersCount(); result.Err != nil {
return nil, result.Err
@@ -793,7 +793,7 @@ func getInitialLoad(c *Context, w http.ResponseWriter, r *http.Request) {
var cchan store.StoreChannel
if sessionCache.Len() == 0 {
- // Below is a speical case when intializating a new server
+ // Below is a special case when intializating a new server
// Lets check to make sure the server is really empty
cchan = Srv.Store.User().GetTotalUsersCount()