Update documentation for path route predicate

This commit is contained in:
Oliver
2022-05-19 12:19:24 +02:00
committed by spencergibb
parent ec76763404
commit 51137c2610

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");
----