Skip to content

Commit

Permalink
Fix typo in WebClient example
Browse files Browse the repository at this point in the history
  • Loading branch information
origoni authored and snicoll committed Sep 19, 2018
1 parent 6fba477 commit 01cf524
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5616,7 +5616,7 @@ The following code shows a typical example:
}
public Mono<Details> someRestCall(String name) {
return this.webClient.get().url("/{name}/details", name)
return this.webClient.get().uri("/{name}/details", name)
.retrieve().bodyToMono(Details.class);
}
Expand Down

0 comments on commit 01cf524

Please sign in to comment.