From patchwork Thu Oct 3 21:23:17 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 2095 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 ACDEE60BE8 for ; Thu, 3 Oct 2019 23:23:35 +0200 (CEST) Received: from pendragon.wireless.concordia.ca (unknown [132.205.229.214]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 9FF3E2E5 for ; Thu, 3 Oct 2019 23:23:34 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1570137815; bh=vRqxmrGN3RX46nNBZ/wXC0Md0P+7pPfsFQG9ObUDlKY=; h=From:To:Subject:Date:From; b=pBSkoiLaeuDyPNOPe9MxW8Ee5OAGEkYra++DJ2S+D1TCelg9TNGkrCn24hFvYuuUi nVIbTelsPKVd5IzmqvuZe9eHXJJ8I8JRu3WBCbY2QmgTLYTlEDEhoLRaaYShvgE38l F/30HnezSzYRLj7xfO5puejOmcUuN+PJPdyxETdw= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Fri, 4 Oct 2019 00:23:17 +0300 Message-Id: <20191003212317.14408-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: camera_manager: Fix typo in the documentation 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: , X-List-Received-Date: Thu, 03 Oct 2019 21:23:35 -0000 Fix a typo in the CameraManager documentation. Signed-off-by: Laurent Pinchart Reviewed-by: Jacopo Mondi --- src/libcamera/camera_manager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcamera/camera_manager.cpp b/src/libcamera/camera_manager.cpp index 12cb5a0be859..7c6f72bbe120 100644 --- a/src/libcamera/camera_manager.cpp +++ b/src/libcamera/camera_manager.cpp @@ -156,7 +156,7 @@ void CameraManager::stop() * \brief Retrieve all available cameras * * Before calling this function the caller is responsible for ensuring that - * the camera manger is running. + * the camera manager is running. * * \return List of all available cameras */ @@ -166,7 +166,7 @@ void CameraManager::stop() * \param[in] name Name of camera to get * * Before calling this function the caller is responsible for ensuring that - * the camera manger is running. + * the camera manager is running. * * \return Shared pointer to Camera object or nullptr if camera not found */