[libcamera-devel,2/2] simple-cam: Fix documentation typo

Message ID 20200924141803.76422-2-email@uajain.com
State Superseded
Headers show
Series
  • [libcamera-devel,1/2] simple-cam: Early return if no cameras found on the system
Related show

Commit Message

Umang Jain Sept. 24, 2020, 2:18 p.m. UTC
Signed-off-by: Umang Jain <email@uajain.com>
---
 simple-cam.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Kieran Bingham Sept. 24, 2020, 2:42 p.m. UTC | #1
Hi Umang,

On 24/09/2020 15:18, Umang Jain wrote:
> Signed-off-by: Umang Jain <email@uajain.com>

Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>

> ---
>  simple-cam.cpp | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/simple-cam.cpp b/simple-cam.cpp
> index d51000c..5b056b9 100644
> --- a/simple-cam.cpp
> +++ b/simple-cam.cpp
> @@ -338,7 +338,7 @@ int main()
>  	 * Run an EventLoop
>  	 *
>  	 * In order to dispatch events received from the video devices, such
> -	 * as buffer completions, an even loop as to be run.
> +	 * as buffer completions, an event loop has to be run.
>  	 *
>  	 * Libcamera provides its own default event dispatcher realized by
>  	 * polling a set of file descriptors, but applications can integrate
>

Patch

diff --git a/simple-cam.cpp b/simple-cam.cpp
index d51000c..5b056b9 100644
--- a/simple-cam.cpp
+++ b/simple-cam.cpp
@@ -338,7 +338,7 @@  int main()
 	 * Run an EventLoop
 	 *
 	 * In order to dispatch events received from the video devices, such
-	 * as buffer completions, an even loop as to be run.
+	 * as buffer completions, an event loop has to be run.
 	 *
 	 * Libcamera provides its own default event dispatcher realized by
 	 * polling a set of file descriptors, but applications can integrate