From de3bea5f715e877c3fc90ad975123a62ec6a42a3 Mon Sep 17 00:00:00 2001 From: Andrei Costinescu Date: Sat, 12 Sep 2020 04:43:46 +0200 Subject: [PATCH] Update 10_asynchronous_custom_input.cpp (#1696) Fix typo "funtion" -> "function" on line 40 --- examples/tutorial_api_cpp/10_asynchronous_custom_input.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tutorial_api_cpp/10_asynchronous_custom_input.cpp b/examples/tutorial_api_cpp/10_asynchronous_custom_input.cpp index 2ce76ce1..87a206b5 100644 --- a/examples/tutorial_api_cpp/10_asynchronous_custom_input.cpp +++ b/examples/tutorial_api_cpp/10_asynchronous_custom_input.cpp @@ -37,7 +37,7 @@ public: if (mClosed || mImageFiles.size() <= mCounter) { op::opLog("Last frame read and added to queue. Closing program after it is processed.", op::Priority::High); - // This funtion stops this worker, which will eventually stop the whole thread system once all the frames + // This function stops this worker, which will eventually stop the whole thread system once all the frames // have been processed mClosed = true; return nullptr;