summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSebastian Fricke <sebastian.fricke@posteo.net>2021-04-07 07:31:40 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2021-04-07 11:54:45 +0300
commit41d7810436c54bcdfb364f5490649709798006e1 (patch)
tree1a7a1105067fa7ed846d8250c23f3157e1e300ee /src
parent76a5861f3ef0950d9b57e54668c9059ed7bddd89 (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>
Diffstat (limited to 'src')
-rw-r--r--src/libcamera/thread.cpp2
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.