11/*
2- * Copyright 2002-2023 the original author or authors.
2+ * Copyright 2002-2025 the original author or authors.
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
@@ -876,7 +876,7 @@ ResponseSpec onRawStatus(IntPredicate statusCodePredicate,
876876 <T > Flux <T > bodyToFlux (Class <T > elementClass );
877877
878878 /**
879- * Variant of {@link #bodyToMono (Class)} with a {@link ParameterizedTypeReference}.
879+ * Variant of {@link #bodyToFlux (Class)} with a {@link ParameterizedTypeReference}.
880880 * @param elementTypeRef the type of element to decode to
881881 * @param <T> the body element type
882882 * @return the decoded body
@@ -896,7 +896,7 @@ ResponseSpec onRawStatus(IntPredicate statusCodePredicate,
896896 <T > Mono <ResponseEntity <T >> toEntity (Class <T > bodyClass );
897897
898898 /**
899- * Variant of {@link #bodyToMono (Class)} with a {@link ParameterizedTypeReference}.
899+ * Variant of {@link #toEntity (Class)} with a {@link ParameterizedTypeReference}.
900900 * @param bodyTypeReference the expected response body type
901901 * @param <T> the response body type
902902 * @return the {@code ResponseEntity} with the decoded body
@@ -918,7 +918,7 @@ ResponseSpec onRawStatus(IntPredicate statusCodePredicate,
918918 <T > Mono <ResponseEntity <List <T >>> toEntityList (Class <T > elementClass );
919919
920920 /**
921- * Variant of {@link #toEntity (Class)} with a {@link ParameterizedTypeReference}.
921+ * Variant of {@link #toEntityList (Class)} with a {@link ParameterizedTypeReference}.
922922 * @param elementTypeRef the type of element to decode the target Flux to
923923 * @param <T> the body element type
924924 * @return the {@code ResponseEntity}
0 commit comments