diff --git a/src/main/java/ch/psi/daq/queryrest/controller/QueryRestController.java b/src/main/java/ch/psi/daq/queryrest/controller/QueryRestController.java index a2df91e..bd5d28d 100644 --- a/src/main/java/ch/psi/daq/queryrest/controller/QueryRestController.java +++ b/src/main/java/ch/psi/daq/queryrest/controller/QueryRestController.java @@ -198,7 +198,7 @@ public class QueryRestController { * stringified body of the POST request method * @param res the current {@link HttpServletResponse} instance * @throws Exception if reading the JSON string fails or if the subsequent call to - * {@link #executeQuery(DAQQueries, HttpServletResponse)} fails + * {@link #executeQueries(DAQQueries, HttpServletResponse)} fails */ @RequestMapping( value = QUERIES, diff --git a/src/main/java/ch/psi/daq/queryrest/response/ResponseStreamWriter.java b/src/main/java/ch/psi/daq/queryrest/response/ResponseStreamWriter.java index 56c16ac..387a6bc 100644 --- a/src/main/java/ch/psi/daq/queryrest/response/ResponseStreamWriter.java +++ b/src/main/java/ch/psi/daq/queryrest/response/ResponseStreamWriter.java @@ -20,7 +20,7 @@ public interface ResponseStreamWriter { * Responding with the the contents of the stream by writing into the output stream of the * {@link ServletResponse}. * - * @param stream The results results + * @param results The results results * @param options The options for the response * @param response {@link ServletResponse} instance given by the current HTTP request * @throws Exception thrown if writing to the output stream fails