Skip to content

Commit c3f75c4

Browse files
committed
Tidy up
1 parent 2bbaecf commit c3f75c4

File tree

3 files changed

+17
-10
lines changed

3 files changed

+17
-10
lines changed

authentication/v1alpha1/istio.authentication.v1alpha1.pb.html

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
---
2-
title: istio.authentication.v1alpha1
2+
title: Authentication Policy
3+
overview: Authentication policy for Istio services.
34
layout: protoc-gen-docs
45
---
56
<h2 id="AuthenticationMechanism">AuthenticationMechanism</h2>
67
<section>
7-
<p>AuthenticaitonMechanism defines one particular type of authentication (i.e
8-
mutual TLS, JWT etc). The type can be progammatically determine by checking
9-
the type of the &ldquo;params&rdquo; field.</p>
8+
<p>AuthenticaitonMechanism defines one particular type of authentication, e.g
9+
mutual TLS, JWT etc, (no authentication is one type by itsefl).
10+
The type can be progammatically determine by checking the type of the
11+
&ldquo;params&rdquo; field.</p>
1012

1113
<table>
1214
<tr>

authentication/v1alpha1/policy.pb.go

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

authentication/v1alpha1/policy.proto

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414

1515
syntax = "proto3";
1616

17+
// $title: Authentication Policy
18+
// $overview: Authentication policy for Istio services.
19+
1720
package istio.authentication.v1alpha1;
1821

1922
option go_package = "istio.io/api/authentication/v1alpha1";
@@ -106,9 +109,10 @@ message Jwt {
106109
repeated string jwt_params = 7;
107110
}
108111

109-
// AuthenticaitonMechanism defines one particular type of authentication (i.e
110-
// mutual TLS, JWT etc). The type can be progammatically determine by checking
111-
// the type of the "params" field.
112+
// AuthenticaitonMechanism defines one particular type of authentication, e.g
113+
// mutual TLS, JWT etc, (no authentication is one type by itsefl).
114+
// The type can be progammatically determine by checking the type of the
115+
// "params" field.
112116
message AuthenticationMechanism {
113117
oneof params {
114118
None none = 1;

0 commit comments

Comments
 (0)