ci: Add spell checker to ci (#4439)

Correct commonly misspelled English words

Signed-off-by: zyfjeff <tianqian.zyf@alibaba-inc.com>

Mirrored from https://github.com/envoyproxy/envoy @ 31d0611d0ffb982414974adaf6940afd1863fa95
pull/620/head
data-plane-api(CircleCI) 6 years ago
parent a378becfdc
commit d99996c9b3
  1. 2
      envoy/api/v2/listener/listener.proto
  2. 2
      envoy/config/filter/http/jwt_authn/v2alpha/README.md
  3. 2
      envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.proto
  4. 4
      envoy/config/rbac/v2alpha/rbac.proto

@ -61,7 +61,7 @@ message Filter {
// 4. Transport protocol.
// 5. Application protocols (e.g. ALPN for TLS protocol).
//
// For criterias that allow ranges or wildcards, the most specific value in any
// For criteria that allow ranges or wildcards, the most specific value in any
// of the configured filter chains that matches the incoming connection is going
// to be used (e.g. for SNI ``www.example.com`` the most specific match would be
// ``www.example.com``, then ``*.example.com``, then ``*.com``, then any filter

@ -26,6 +26,6 @@ The next default location is in the query parameter as:
If a custom location is desired, `from_headers` or `from_params` can be used to specify custom locations to extract JWT.
## HTTP header to pass sucessfully verified JWT
## HTTP header to pass successfully verified JWT
If a JWT is valid, its payload will be passed to the backend in a new HTTP header specified in `forward_payload_header` field. Its value is base64 encoded JWT payload in JSON.

@ -219,7 +219,7 @@ message HttpConnectionManager {
bool unix_sockets = 1;
}
// Configures what network addresses are considered internal for stats and header sanitazion
// Configures what network addresses are considered internal for stats and header sanitation
// purposes. If unspecified, only RFC1918 IP addresses will be considered internal.
// See the documentation for :ref:`config_http_conn_man_headers_x-envoy-internal` for more
// information about internal/external addresses.

@ -108,7 +108,7 @@ message Permission {
// When any is set, it matches any action.
bool any = 3 [(validate.rules).bool.const = true];
// A header (or psuedo-header such as :path or :method) on the incoming HTTP request. Only
// A header (or pseudo-header such as :path or :method) on the incoming HTTP request. Only
// available for HTTP request.
envoy.api.v2.route.HeaderMatcher header = 4;
@ -166,7 +166,7 @@ message Principal {
// A CIDR block that describes the downstream IP.
envoy.api.v2.core.CidrRange source_ip = 5;
// A header (or psuedo-header such as :path or :method) on the incoming HTTP request. Only
// A header (or pseudo-header such as :path or :method) on the incoming HTTP request. Only
// available for HTTP request.
envoy.api.v2.route.HeaderMatcher header = 6;

Loading…
Cancel
Save