Merge branch '3.1.x'

This commit is contained in:
spencergibb
2023-01-12 13:33:52 -05:00

View File

@@ -301,7 +301,7 @@ The following example shows how to use the `get` method:
====
[source,java]
----
Map<String, String> uriVariables = ServerWebExchangeUtils.getPathPredicateVariables(exchange);
Map<String, String> uriVariables = ServerWebExchangeUtils.getUriTemplateVariables(exchange);
String segment = uriVariables.get("segment");
----