From patchwork Fri Nov 20 15:00:21 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 10457 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 17093BE176 for ; Fri, 20 Nov 2020 15:00:27 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 94A57628A5; Fri, 20 Nov 2020 16:00:26 +0100 (CET) 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="vIJqfi9e"; dkim-atps=neutral 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 A260B6220D for ; Fri, 20 Nov 2020 16:00:25 +0100 (CET) Received: from Q.local (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 320A32A3; Fri, 20 Nov 2020 16:00:25 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1605884425; bh=Giaax5zJR+5BlK85eAW6v3WGp/tH19KfH4okeTYdE18=; h=From:To:Cc:Subject:Date:From; b=vIJqfi9eQMrzES+pyQagM3uND2R1bzN0YTJGsRsWVVQUzGloAMk4b/fvtWUZJL2nU hbgOHLgKWOfdF/58UcuDgBb54Hjx3d9YYi+Di5vBJyeePYxFuur20WrEkecoj7mUAL JwTRuDy+BCuye9zOToWgyYqk3wZLOTR8V6tMuLak= From: Kieran Bingham To: libcamera devel Date: Fri, 20 Nov 2020 15:00:21 +0000 Message-Id: <20201120150021.81865-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: controls: Improve Control documentation grammar 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" A few grammatical errors remain in the Control class documentation. Fix them. Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart --- src/libcamera/controls.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcamera/controls.cpp b/src/libcamera/controls.cpp index aad461121651..c58ed3946f3b 100644 --- a/src/libcamera/controls.cpp +++ b/src/libcamera/controls.cpp @@ -437,8 +437,8 @@ void ControlValue::reserve(ControlType type, bool isArray, std::size_t numElemen * the control value. See for instance how the ControlList::get() method * returns a value corresponding to the type of the requested control. * - * While this class is the main mean to refer to a control, the control - * identifying information are stored in the non-template base ControlId class. + * While this class is the main means to refer to a control, the control + * identifying information is stored in the non-template base ControlId class. * This allows code that operates on a set of controls of different types to * reference those controls through a ControlId instead of a Control. For * instance, the list of controls supported by a camera is exposed as ControlId