diff --git a/docs/src/main/asciidoc/spring-cloud-gateway.adoc b/docs/src/main/asciidoc/spring-cloud-gateway.adoc index 73a145cbc..0621df6e8 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 })); };