From 5f41d4591c2a3e0e32e77b38d6ebf11dedefcbe7 Mon Sep 17 00:00:00 2001 From: Prianka Liz Kariat Date: Fri, 6 Jan 2023 14:24:37 +0530 Subject: [PATCH] Updated comments --- .../tasks/ios/core/sources/MPPTaskRunner.h | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/mediapipe/tasks/ios/core/sources/MPPTaskRunner.h b/mediapipe/tasks/ios/core/sources/MPPTaskRunner.h index c1d36bf77..8625cf606 100644 --- a/mediapipe/tasks/ios/core/sources/MPPTaskRunner.h +++ b/mediapipe/tasks/ios/core/sources/MPPTaskRunner.h @@ -23,15 +23,14 @@ NS_ASSUME_NONNULL_BEGIN * This class is used to create and call appropriate methods on the C++ Task Runner to initialize, * execute and terminate any MediaPipe task. * - * An instance of the newly created C++ task runner will - * be stored until this class is destroyed. When methods are called for processing (performing - * inference), closing etc., on this class, internally the appropriate methods will be called on the - * C++ task runner instance to execute the appropriate actions. For each type of task, a subclass of - * this class must be defined to add any additional functionality. For eg:, vision tasks must create - * an `MPPVisionTaskRunner` and provide additional functionality. An instance of - * `MPPVisionTaskRunner` can in turn be used by the each vision task for creation and execution of - * the task. Please see the documentation for the C++ Task Runner for more details on how the taks - * runner operates. + * An instance of the newly created C++ task runner will be stored until this class is destroyed. + * When methods are called for processing (performing inference), closing etc., on this class, + * internally the appropriate methods will be called on the C++ task runner instance to execute + * the appropriate actions. For each type of task, a subclass of this class must be defined to add + * any additional functionality. For eg:, vision tasks must create an `MPPVisionTaskRunner` and + * provide additional functionality. An instance of `MPPVisionTaskRunner` can in turn be used by + * the each vision task for creation and execution of the task. Please see the documentation for + * the C++ Task Runner for more details on how the taks runner operates. **/ @interface MPPTaskRunner : NSObject