From dea0da56338f65488853edb24255f472fbfb6fd0 Mon Sep 17 00:00:00 2001 From: dveamer Date: Fri, 1 May 2020 18:28:05 +0900 Subject: [PATCH] Corrects a typo about RewritePath GatewayFilter fixes gh-1700 --- docs/src/main/asciidoc/spring-cloud-gateway.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/spring-cloud-gateway.adoc b/docs/src/main/asciidoc/spring-cloud-gateway.adoc index ab3876428..3e6cec88b 100644 --- a/docs/src/main/asciidoc/spring-cloud-gateway.adoc +++ b/docs/src/main/asciidoc/spring-cloud-gateway.adoc @@ -1187,7 +1187,7 @@ spring: - id: rewritepath_route uri: https://example.org predicates: - - Path=/foo/** + - Path=/red/** filters: - RewritePath=/red(?/?.*), $\{segment} ----