From 281a6cbb1efee62bc73bb175853a1d050d4b0150 Mon Sep 17 00:00:00 2001 From: Tillmann Heigel Date: Thu, 5 Jul 2018 19:48:06 +0200 Subject: [PATCH] Fix a small typo in spring-cloud-gateway.adoc (#399) PostGatewayFilterFactory example wasn't compiling. --- 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 73a145cb..0621df6e 100644 --- a/docs/src/main/asciidoc/spring-cloud-gateway.adoc +++ b/docs/src/main/asciidoc/spring-cloud-gateway.adoc @@ -990,7 +990,7 @@ public class PostGatewayFilterFactory extends AbstractGatewayFilterFactory { return chain.filter(exchange).then(Mono.fromRunnable(() -> { - ServerHttpReponse response = exchange.getResponse(); + ServerHttpResponse response = exchange.getResponse(); //Manipulate the response in some way })); };