Просмотр исходного кода

Merge pull request #421 from bfontaine/retry-typolicy

Typo fixed in RetryPolicy doc
Chris Bannister 10 лет назад
Родитель
Сommit
a81ed04434
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      policies.go

+ 1 - 1
policies.go

@@ -17,7 +17,7 @@ type RetryableQuery interface {
 	GetConsistency() Consistency
 }
 
-// RetryPolicy interace is used by gocql to determine if a query can be attempted
+// RetryPolicy interface is used by gocql to determine if a query can be attempted
 // again after a retryable error has been received. The interface allows gocql
 // users to implement their own logic to determine if a query can be attempted
 // again.