From b475401668f727d6601b81f962136d08da790bc5 Mon Sep 17 00:00:00 2001 From: "data-plane-api(CircleCI)" Date: Tue, 11 Sep 2018 20:45:22 +0000 Subject: [PATCH] docs: fix non-rendered character in domains docs (#4399) Description: * is being rendered out off of the docs. This fixes that. Risk Level: low Testing: generated docs locally. Signed-off-by: Jose Nino Mirrored from https://github.com/envoyproxy/envoy @ 5c3169f863c4fc492f5a6a3220aef852451719ec --- envoy/api/v2/route/route.proto | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/envoy/api/v2/route/route.proto b/envoy/api/v2/route/route.proto index a4c0daaa..fd25ed9a 100644 --- a/envoy/api/v2/route/route.proto +++ b/envoy/api/v2/route/route.proto @@ -31,16 +31,16 @@ message VirtualHost { string name = 1 [(validate.rules).string.min_bytes = 1]; // A list of domains (host/authority header) that will be matched to this - // virtual host. Wildcard hosts are supported in the form of “*.foo.com” or - // “*-bar.foo.com”. + // virtual host. Wildcard hosts are supported in the form of ``*.foo.com`` or + // ``*-bar.foo.com``. // // .. note:: // // The wildcard will not match the empty string. - // e.g. “*-bar.foo.com” will match “baz-bar.foo.com” but not “-bar.foo.com”. - // Additionally, a special entry “*” is allowed which will match any + // e.g. ``*-bar.foo.com`` will match ``baz-bar.foo.com`` but not ``-bar.foo.com``. + // Additionally, a special entry ``*`` is allowed which will match any // host/authority header. Only a single virtual host in the entire route - // configuration can match on “*”. A domain must be unique across all virtual + // configuration can match on ``*``. A domain must be unique across all virtual // hosts or the config will fail to load. repeated string domains = 2 [(validate.rules).repeated .min_items = 1];