Skip to content

Commit

Permalink
Fixed spelling error.
Browse files Browse the repository at this point in the history
  • Loading branch information
Phillip Couto committed Sep 17, 2014
1 parent e781c60 commit ffbf78b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion policies.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ type SimpleRetryPolicy struct {
NumRetries int //Number of times to retry a query
}

// Attempt tells gocql to attempt the query again based on query.Attemps being less
// Attempt tells gocql to attempt the query again based on query.Attempts being less
// than the NumRetries defined in the policy.
func (s *SimpleRetryPolicy) Attempt(q RetryableQuery) bool {
return q.Attempts() <= s.NumRetries
Expand Down

0 comments on commit ffbf78b

Please sign in to comment.