Skip to content

Commit

Permalink
Fix gofmt issues
Browse files Browse the repository at this point in the history
Signed-off-by: Sean McGinnis <[email protected]>
  • Loading branch information
stmcginnis committed Mar 14, 2020
1 parent a55927b commit 8a38172
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
# https://help.github.com/articles/ignoring-files/#create-a-global-gitignore

gofish
bin/*
Binary file added bin/golangci-lint.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion examples/change_login.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func main() {
if account.UserName == username {
payload := make(map[string]string)
payload["UserName"] = "new-username"
// New password must follow the rules set in AccountService :
// New password must follow the rules set in AccountService :
// MinPasswordLength and MaxPasswordLength
payload["Password"] = "new-password"
res, err := c.Patch(account.ODataID, payload)
Expand Down
2 changes: 1 addition & 1 deletion redfish/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,6 @@ func (manager *Manager) EthernetInterfaces() ([]*EthernetInterface, error) {
}

// LogServices get this manager's log services on this system.
func (manager *Manager) LogServices()([]*LogService, error) {
func (manager *Manager) LogServices() ([]*LogService, error) {
return ListReferencedLogServices(manager.Client, manager.logServices)
}

0 comments on commit 8a38172

Please sign in to comment.