summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--share/man/ENVOY.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/man/ENVOY.md b/share/man/ENVOY.md
index 64a0a12..1bdeee2 100644
--- a/share/man/ENVOY.md
+++ b/share/man/ENVOY.md
@@ -515,8 +515,6 @@ func (svc *CheckService) Check(ctx context.Context, request *auth.CheckRequest)
return svc.Denied(ctx), nil
}
-// ...
-
func (svc *CheckService) OK(ctx context.Context) *auth.CheckResponse {
return &auth.CheckResponse{
Status: &status.Status{
@@ -546,5 +544,7 @@ func (svc *CheckService) Denied(ctx context.Context) *auth.CheckResponse {
},
},
}
+
+ // ...
}
```