diff options
author | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2019-05-29 12:30:37 +0100 |
---|---|---|
committer | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2019-06-11 09:28:39 +0100 |
commit | a0f869f4ed92144aed6f8d9ad8f06eb02f365939 (patch) | |
tree | 42db21c3c9fc508d3e6eef32dc62af8960396ba1 /src | |
parent | 238919be5949a0bc632920cbd5b58cc4a5ca4678 (diff) |
libcamera: pipeline: Fix 'request' grammar
The PipelineHandler::completeBuffer documentation repeats the word
'request'.
Remove the duplication and reformat the lines to fit.
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/libcamera/pipeline_handler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcamera/pipeline_handler.cpp b/src/libcamera/pipeline_handler.cpp index af19f4a3..c91ef2f7 100644 --- a/src/libcamera/pipeline_handler.cpp +++ b/src/libcamera/pipeline_handler.cpp @@ -391,8 +391,8 @@ bool PipelineHandler::completeBuffer(Camera *camera, Request *request, * \param[in] request The request that has completed * * The pipeline handler shall call this method to notify the \a camera that the - * request request has complete. The request is deleted and shall not be - * accessed once this method returns. + * request has completed. The request is deleted and shall not be accessed once + * this method returns. * * The pipeline handler shall ensure that requests complete in the same order * they are submitted. |