diff options
author | Sebastian Fricke <sebastian.fricke@posteo.net> | 2021-04-07 07:31:40 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2021-04-07 11:54:45 +0300 |
commit | 41d7810436c54bcdfb364f5490649709798006e1 (patch) | |
tree | 1a7a1105067fa7ed846d8250c23f3157e1e300ee | |
parent | 76a5861f3ef0950d9b57e54668c9059ed7bddd89 (diff) |
libcamera: thread: Fix typo in comment
s/This method enter/This method enters/
Signed-off-by: Sebastian Fricke <sebastian.fricke@posteo.net>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
-rw-r--r-- | src/libcamera/thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcamera/thread.cpp b/src/libcamera/thread.cpp index 6f2cd39f..198670de 100644 --- a/src/libcamera/thread.cpp +++ b/src/libcamera/thread.cpp @@ -296,7 +296,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. |