ソースを参照

to correct breaker interface annotation (#136)

firefantasy 4 年 前
コミット
a14bd309a9
1 ファイル変更2 行追加2 行削除
  1. 2 2
      core/breaker/breaker.go

+ 2 - 2
core/breaker/breaker.go

@@ -41,7 +41,7 @@ type (
 		Do(req func() error) error
 
 		// DoWithAcceptable runs the given request if the netflixBreaker accepts it.
-		// Do returns an error instantly if the netflixBreaker rejects the request.
+		// DoWithAcceptable returns an error instantly if the netflixBreaker rejects the request.
 		// If a panic occurs in the request, the netflixBreaker handles it as an error
 		// and causes the same panic again.
 		// acceptable checks if it's a successful call, even if the err is not nil.
@@ -54,7 +54,7 @@ type (
 		DoWithFallback(req func() error, fallback func(err error) error) error
 
 		// DoWithFallbackAcceptable runs the given request if the netflixBreaker accepts it.
-		// DoWithFallback runs the fallback if the netflixBreaker rejects the request.
+		// DoWithFallbackAcceptable runs the fallback if the netflixBreaker rejects the request.
 		// If a panic occurs in the request, the netflixBreaker handles it as an error
 		// and causes the same panic again.
 		// acceptable checks if it's a successful call, even if the err is not nil.