From 94a57c33cfefad9ba230128715d2e6075b616c7a Mon Sep 17 00:00:00 2001 From: Renann Prado Date: Tue, 8 May 2018 00:46:28 +0200 Subject: [PATCH] Fix typo in OperationResponsePreprocessor javadoc See gh-507 --- .../operation/preprocess/OperationResponsePreprocessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-restdocs-core/src/main/java/org/springframework/restdocs/operation/preprocess/OperationResponsePreprocessor.java b/spring-restdocs-core/src/main/java/org/springframework/restdocs/operation/preprocess/OperationResponsePreprocessor.java index 4763b05b..bb134e03 100644 --- a/spring-restdocs-core/src/main/java/org/springframework/restdocs/operation/preprocess/OperationResponsePreprocessor.java +++ b/spring-restdocs-core/src/main/java/org/springframework/restdocs/operation/preprocess/OperationResponsePreprocessor.java @@ -19,7 +19,7 @@ package org.springframework.restdocs.operation.preprocess; import org.springframework.restdocs.operation.OperationResponse; /** - * An {@code OperationRequestPreprocessor} is used to modify an {@code OperationRequest} + * An {@code OperationResponsePreprocessor} is used to modify an {@code OperationResponse} * prior to it being documented. * * @author Andy Wilkinson