From patchwork Wed Apr 7 05:31:40 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sebastian Fricke X-Patchwork-Id: 11857 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 8C821C0DA3 for ; Wed, 7 Apr 2021 05:32:06 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id E303E687D3; Wed, 7 Apr 2021 07:32:05 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=posteo.net header.i=@posteo.net header.b="Jx+mb/h8"; dkim-atps=neutral Received: from mout01.posteo.de (mout01.posteo.de [185.67.36.65]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 3BFA8602CD for ; Wed, 7 Apr 2021 07:32:03 +0200 (CEST) Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id D45C116005F for ; Wed, 7 Apr 2021 07:32:02 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1617773522; bh=pxtIJBA3SRKkAQcWwWz2CtmGZIiyxl1L1p2VWSf37p4=; h=From:To:Cc:Subject:Date:From; b=Jx+mb/h8DY29C4itwvUeXyMKT6Xfewmmzouu6x9i/fmVaQEY5zJtNj6wl0J4gzRWo DvW8+jUXBDfadyNYd9sDrlnMcMrRxX039r8VMdf6ymNf7Lw7aOz92T/OswflGvjBou Ua+/jkGGAhJ4sFUMCyFu0FipV3X8msryDGqdJN82KQmfWpjFWuiorZhQCvXqmcZeu1 v37OObWfa1OwjzLsqG9jl2/ca8++Bf0w13eFFuU55ONf6k4iMWwCcmTQrdEpy2wAfm Y1JVDl256d9WHm9ut0O0yoeEznlboykow3MS8j7NZNbip0SWOiV7jdiCwTvNjyjSAq A27pDwbTZy94g== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4FFY1G2Tgvz9rxB; Wed, 7 Apr 2021 07:32:02 +0200 (CEST) From: Sebastian Fricke To: libcamera-devel@lists.libcamera.org Date: Wed, 7 Apr 2021 07:31:40 +0200 Message-Id: <20210407053139.8686-1-sebastian.fricke@posteo.net> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: thread: Fix typo in comment 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" s/This method enter/This method enters/ Signed-off-by: Sebastian Fricke Reviewed-by: Jacopo Mondi Reviewed-by: Laurent Pinchart --- src/libcamera/thread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcamera/thread.cpp b/src/libcamera/thread.cpp index f339dab1..f14c433f 100644 --- a/src/libcamera/thread.cpp +++ b/src/libcamera/thread.cpp @@ -290,7 +290,7 @@ void Thread::startThread() /** * \brief Enter the event loop * - * This method enter an event loop based on the event dispatcher instance for + * This method enters an event loop based on the event dispatcher instance for * the thread, and blocks until the exit() method is called. It is meant to be * called within the thread from the run() method and shall not be called * outside of the thread.