diff --git a/cmd/mothd/state.go b/cmd/mothd/state.go index a7bd870..0373b2e 100644 --- a/cmd/mothd/state.go +++ b/cmd/mothd/state.go @@ -510,7 +510,7 @@ func (ds *DevelState) TeamName(teamID string) (string, error) { return name, nil } if teamID == "" { - return "", fmt.Errorf("Empty team ID") + return "", fmt.Errorf("empty team ID") } return fmt.Sprintf("«devel:%s»", teamID), nil }