Skip to content

Commit

Permalink
Fix spelling error
Browse files Browse the repository at this point in the history
  • Loading branch information
tygern committed Mar 27, 2024
1 parent 6b13b1f commit bde83c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/websupport/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func (s *Server) WaitUntilHealthy(path string) error {
if code == http.StatusOK {
return nil
} else {
return fmt.Errorf("server responeded with a non 200 code: %d", code)
return fmt.Errorf("server responded with a non 200 code: %d", code)
}
case <-time.After(100 * time.Millisecond):
return errors.New("server did not respond in 100 milliseconds")
Expand Down

0 comments on commit bde83c0

Please sign in to comment.