From patchwork Mon Jun 10 22:07:57 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 1389 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 1DDD661E49 for ; Tue, 11 Jun 2019 00:08:04 +0200 (CEST) Received: from localhost.localdomain (cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 82C2F9CB; Tue, 11 Jun 2019 00:08:03 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1560204483; bh=+iVOT40c42yVBP6yijbsBRpQJ+jEwNaTOhGGALQiXKU=; h=From:To:Cc:Subject:Date:From; b=cn0+BG4DBy8OdJUAtV2SWqOM26pDcdTkMPd5g5oTdsgTpHoGSDsg49tgFUOH7MzI3 408i0nojEkGZRPvCWyLD3O4kR6rGNIKVJHglcnRs7NgXwoXbCWsNXUz/4pgqwYD4BM 4GfqSV0LLnKmUu+7pYzcvn8CPgD3ZT/7DNFDy1ZM= From: Kieran Bingham To: LibCamera Devel Date: Mon, 10 Jun 2019 23:07:57 +0100 Message-Id: <20190610220759.7192-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 1/3] libcamera: pipeline: Fix 'request' grammar X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jun 2019 22:08:04 -0000 The PipelineHandler::completeBuffer documentation repeats the word 'request'. Remove the duplication and reformat the lines to fit. Signed-off-by: Kieran Bingham Reviewed-by: Jacopo Mondi --- src/libcamera/pipeline_handler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcamera/pipeline_handler.cpp b/src/libcamera/pipeline_handler.cpp index af19f4a33187..c91ef2f7d336 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.