helpers: Fix typo in language.Get documentation
authorbogem <albertnigma@gmail.com>
Wed, 23 Nov 2016 09:35:02 +0000 (10:35 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 23 Nov 2016 09:51:33 +0000 (10:51 +0100)
helpers/language.go

index e487800df41c2d6bd40cf27a91a930cde5f71732..bb539277e7f924e710b826afb8937e2997acb429 100644 (file)
@@ -116,7 +116,7 @@ func (l *Language) GetStringMapString(key string) map[string]string {
        return cast.ToStringMapString(l.Get(key))
 }
 
-// Get returns a value associated with the key relying on pecified language.
+// Get returns a value associated with the key relying on specified language.
 // Get is case-insensitive for a key.
 //
 // Get returns an interface. For a specific value use one of the Get____ methods.