From patchwork Wed Aug 25 10:29:37 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 13488 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 9C1F2C3241 for ; Wed, 25 Aug 2021 10:29:49 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 584FE6890C; Wed, 25 Aug 2021 12:29:49 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="MTVgvo1l"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 125D8688A3 for ; Wed, 25 Aug 2021 12:29:43 +0200 (CEST) Received: from Monstersaurus.local (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id ADB706EE; Wed, 25 Aug 2021 12:29:42 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1629887382; bh=66BFXUTKEQNCZgcAoGPUwsjh8GpNXpEXc1zL94VzaWM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=MTVgvo1lPOT0XFyK+W59Wyc1SW+JfRPr0Td52NDaBCU1EjXJNzKQUT3EJDG3rNt7d yZ6R6SGwD0zOzfVhvb2F3jfNM49ftwJ+3SmpUxFoFLQ7mThhY69plWEKpNapLG9Gix mwEtUB4bXhAhPQrcK4Br8tLJdkik5VJ5HTifxA5c= From: Kieran Bingham To: libcamera devel Date: Wed, 25 Aug 2021 11:29:37 +0100 Message-Id: <20210825102937.3740405-6-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20210825102937.3740405-1-kieran.bingham@ideasonboard.com> References: <20210825102937.3740405-1-kieran.bingham@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 5/5] Documentation: application-developer: Fix up spelling error X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Fix a minor spelling error. Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart --- Documentation/guides/application-developer.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/guides/application-developer.rst b/Documentation/guides/application-developer.rst index 5f43af9e5a7a..84c3d95608ab 100644 --- a/Documentation/guides/application-developer.rst +++ b/Documentation/guides/application-developer.rst @@ -419,7 +419,7 @@ and the bytes used, as described in the `FrameMetadata`_ documentation. const FrameMetadata &metadata = buffer->metadata(); } -For this example application, inside the ``for`` loop from above, we ca print +For this example application, inside the ``for`` loop from above, we can print the Frame sequence number and details of the planes. .. code:: cpp