diff --git a/multi/multi__developer_guide.html b/multi/multi__developer_guide.html index 17ee88c9..dd201149 100644 --- a/multi/multi__developer_guide.html +++ b/multi/multi__developer_guide.html @@ -36,7 +36,7 @@ // grab configuration from Config object return (exchange, chain) -> { return chain.filter(exchange).then(Mono.fromRunnable(() -> { - ServerHttpReponse response = exchange.getResponse(); + ServerHttpResponse response = exchange.getResponse(); //Manipulate the response in some way })); }; diff --git a/single/spring-cloud-gateway.html b/single/spring-cloud-gateway.html index d7b6b76f..1298904a 100644 --- a/single/spring-cloud-gateway.html +++ b/single/spring-cloud-gateway.html @@ -440,7 +440,7 @@ or check if an exchange has already been routed.

// grab configuration from Config object return (exchange, chain) -> { return chain.filter(exchange).then(Mono.fromRunnable(() -> { - ServerHttpReponse response = exchange.getResponse(); + ServerHttpResponse response = exchange.getResponse(); //Manipulate the response in some way })); }; diff --git a/spring-cloud-gateway.xml b/spring-cloud-gateway.xml index 5ae1721f..6be827d2 100644 --- a/spring-cloud-gateway.xml +++ b/spring-cloud-gateway.xml @@ -1052,7 +1052,7 @@ public RouteLocator customRouteLocator(RouteLocatorBuilder builder, ThrottleGate // grab configuration from Config object return (exchange, chain) -> { return chain.filter(exchange).then(Mono.fromRunnable(() -> { - ServerHttpReponse response = exchange.getResponse(); + ServerHttpResponse response = exchange.getResponse(); //Manipulate the response in some way })); };