diff options
| author | mo khan <mo@mokhan.ca> | 2025-05-26 14:35:28 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-05-26 14:35:28 -0600 |
| commit | 22d964d552ccf888a46977bbf6e0158a267fc335 (patch) | |
| tree | b982effe43b0df9f75010641d0b5788cdcb90bb1 /share | |
| parent | 2a102d4abbf5310d9c13f4b97509b82d3152922b (diff) | |
docs: move golang code comments to the bottom of the example
Diffstat (limited to 'share')
| -rw-r--r-- | share/man/ENVOY.md | 4 |
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 { }, }, } + + // ... } ``` |
