From patchwork Tue Jun 16 10:54:00 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Elder X-Patchwork-Id: 4040 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 5DECA60103 for ; Tue, 16 Jun 2020 12:54:23 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="IhlqNHZV"; dkim-atps=neutral Received: from jade.flets-east.jp (unknown [IPv6:2400:4051:61:600:2807:bdfa:f6a:8e53]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id DF1CFF9; Tue, 16 Jun 2020 12:54:20 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1592304862; bh=VytRLRI/hHrTgg3LwW3cgb6JDZYe5/6yA26ingSTxFM=; h=From:To:Cc:Subject:Date:From; b=IhlqNHZV+8liymQeD7sQA9uLlI7zop/tU4kE4YZgPpcttHfMxqCcbG29A0wzSD4CE q/KAmT7pJ9ANgVLYat55/sdFmyvtxCkHkv8tlRhQlwK6JmQanfwuGGKB014BFQNoBJ T9FLul0cQChsCfYBByUPcUb+QnsoqriaKn+bkpaE= From: Paul Elder To: libcamera-devel@lists.libcamera.org Date: Tue, 16 Jun 2020 19:54:00 +0900 Message-Id: <20200616105400.57377-1-paul.elder@ideasonboard.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: StreamConfiguration: Fix typo in 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: Tue, 16 Jun 2020 10:54:23 -0000 Fix a typo in the documentation in the StreamConfiguration constructor. Signed-off-by: Paul Elder Reviewed-by: Umang Jain Reviewed-by: Laurent Pinchart --- src/libcamera/stream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcamera/stream.cpp b/src/libcamera/stream.cpp index f34348f..8e78234 100644 --- a/src/libcamera/stream.cpp +++ b/src/libcamera/stream.cpp @@ -276,7 +276,7 @@ SizeRange StreamFormats::range(const PixelFormat &pixelformat) const /** * \todo This method is deprecated and should be removed once all pipeline - * handlers provied StreamFormats. + * handlers provide StreamFormats. */ StreamConfiguration::StreamConfiguration() : pixelFormat(0), stream_(nullptr)