From patchwork Sun Jul 24 14:43:53 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Umang Jain X-Patchwork-Id: 16750 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 CF409BE173 for ; Sun, 24 Jul 2022 14:44:10 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 71D8D63316; Sun, 24 Jul 2022 16:44:10 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1658673850; bh=rdo0ANfoaQd4z+RmqfqVQeuBuUZ8qXw4BbeTYQTHvYw=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=ZpPl0/gBv9BtpGOroaZF9Orr5hiMjcxGafXfIfN9VnrxcOtbxqWSgfCIguiPz/8Cd TwW8H9Vo/pAwKnr4N8kDMzfWXIlS6wI21wuj1NIt6XzRk2tVpqhC5wDwK2xv9e520F lhAhmm7UUZF7zv8CF5rpVUdwHFnBhwg4FZOanBtDx35Au7kpw0cAkrR1yWvLNsPeY6 84R5KH3pCwpdRhQHrYHTOjonDphalXP2UDT+nmAp97iB3NHx5JG0ZlWUSBTjolYWLq 5zoeifJATp1Y5eioH1yaYKaXTbktI/ybppeCO9gJkCWtcTLEW17oNjhgUUCAHRlt6R YX09z0hvlzurw== 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 0DFA063314 for ; Sun, 24 Jul 2022 16:44:07 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="jZgaa3Wr"; dkim-atps=neutral Received: from perceval.ideasonboard.com (unknown [IPv6:2401:4900:1f3e:f7a:bc8f:12ed:b45f:c35d]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 244ED835; Sun, 24 Jul 2022 16:44:05 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1658673847; bh=rdo0ANfoaQd4z+RmqfqVQeuBuUZ8qXw4BbeTYQTHvYw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=jZgaa3Wr4/0iV0ihxirXvsrpQ7CUdtydTo4RU8QoMIJ+FBU8YWgyvbeOhvY/OVt+7 LRyP54thBc36Cx6YNBESSy0G96/+tVmPIDK8OK9FglbGbgl0nIpNV0WG2k5YUPw+46 PgDp7M1FLJ/TgUHcRA0wX3HVS5yKjkaE/KBJtE8o= To: libcamera-devel@lists.libcamera.org Date: Sun, 24 Jul 2022 20:13:53 +0530 Message-Id: <20220724144355.104978-2-umang.jain@ideasonboard.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20220724144355.104978-1-umang.jain@ideasonboard.com> References: <20220724144355.104978-1-umang.jain@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 1/3] libcamera: camera: Fix documentation typo 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-Patchwork-Original-From: Umang Jain via libcamera-devel From: Umang Jain Reply-To: Umang Jain Cc: rishikeshdonadkar@gmail.com, nicolas.dufresne@collabora.com, vedantparanjape160201@gmail.com Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Signed-off-by: Umang Jain Reviewed-by: Laurent Pinchart --- src/libcamera/camera.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcamera/camera.cpp b/src/libcamera/camera.cpp index 2a8ef60e..3910915c 100644 --- a/src/libcamera/camera.cpp +++ b/src/libcamera/camera.cpp @@ -358,8 +358,8 @@ bool isRaw(const PixelFormat &pixFmt) * \return A CameraConfiguration::Status value that describes the validation * status. * \retval CameraConfigutation::Adjusted The configuration has been adjusted - * and is now valid. The color space of some or all of the streams may bave - * benn changed. The caller shall check the color spaces carefully. + * and is now valid. The color space of some or all of the streams may have + * been changed. The caller shall check the color spaces carefully. * \retval CameraConfiguration::Valid The configuration was already valid and * hasn't been adjusted. */