From patchwork Sat Feb 2 08:29:43 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 480 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id AD00F60B1B for ; Sat, 2 Feb 2019 09:29:51 +0100 (CET) Received: from localhost.localdomain (218.182-78-194.adsl-static.isp.belgacom.be [194.78.182.218]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 2343141; Sat, 2 Feb 2019 09:29:50 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1549096190; bh=u6YM0j7jLsejtXNPsCItuthPd7I2KUbegycnzfwqnX4=; h=From:To:Cc:Subject:Date:From; b=sosGdHrSLxypXg5Czvh8L3veOjyyjXHqYbACJCltGsOA3K7VDJnSEsZ7XzuMrm/3E NPamvtCze3dFeVqN87KIZY3t0dGusRVmNY2MJZqDRfBPswROXDbNSae0nlU19B0iBu EDVE8M1AbJk/Okyq3ZYQzuWYn/nlRBw+3tjccBOw= From: Kieran Bingham To: LibCamera Devel Date: Sat, 2 Feb 2019 09:29:43 +0100 Message-Id: <20190202082943.27611-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.19.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: camera: Fix spelling error 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: Sat, 02 Feb 2019 08:29:51 -0000 Fix a small typo in the camera object documentation. cameera -> camera Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart --- src/libcamera/camera.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcamera/camera.cpp b/src/libcamera/camera.cpp index f2d8f9558c72..1e0946c17747 100644 --- a/src/libcamera/camera.cpp +++ b/src/libcamera/camera.cpp @@ -102,7 +102,7 @@ const std::string &Camera::name() const * \var Camera::disconnected * \brief Signal emitted when the camera is disconnected from the system * - * This signal is emitted when libcamera detects that the cameera has been + * This signal is emitted when libcamera detects that the camera has been * removed from the system. For hot-pluggable devices this is usually caused by * physical device disconnection. The media device is passed as a parameter. *