diff --git a/mediapipe/tasks/ios/components/containers/sources/MPPClassificationResult.h b/mediapipe/tasks/ios/components/containers/sources/MPPClassificationResult.h index baded7c95..46a7e2aba 100644 --- a/mediapipe/tasks/ios/components/containers/sources/MPPClassificationResult.h +++ b/mediapipe/tasks/ios/components/containers/sources/MPPClassificationResult.h @@ -82,7 +82,7 @@ NS_SWIFT_NAME(ClassificationResult) @property(nonatomic, readonly) NSArray *classifications; /** The optional timestamp (in milliseconds) of the start of the chunk of data corresponding to - * these results. If it is set to the value -1, it signifies the absence of a time stamp. This is + * these results. If it is set to the value -1, it signifies the absence of a timestamp. This is * only used for classification on time series (e.g. audio classification). In these use cases, the * amount of data to process might exceed the maximum size that the model can process: to solve * this, the input data is split into multiple chunks starting at different timestamps. @@ -107,7 +107,7 @@ NS_SWIFT_NAME(ClassificationResult) * * @param classifications An Array of `MPPClassifications` objects containing the predicted * categories for each head of the model. - * @param timeStampMs The timestamp (in milliseconds) of the start of the chunk of data + * @param timestampMs The timestamp (in milliseconds) of the start of the chunk of data * corresponding to these results. * * @return An instance of `MPPClassificationResult` initialized with the given array of