helpers: Fix typo in language.Get documentation

This commit is contained in:
bogem 2016-11-23 10:35:02 +01:00 committed by Bjørn Erik Pedersen
parent c8d4114171
commit c06c3234eb
1 changed files with 1 additions and 1 deletions

View 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.