From 9f0dd03851ade673f14301d11543cd0f86f79328 Mon Sep 17 00:00:00 2001 From: Prianka Liz Kariat Date: Sat, 6 May 2023 05:15:23 +0530 Subject: [PATCH] Updated comments --- third_party/opencv_ios_source.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/opencv_ios_source.bzl b/third_party/opencv_ios_source.bzl index ddf2e4136..3be3f6e02 100644 --- a/third_party/opencv_ios_source.bzl +++ b/third_party/opencv_ios_source.bzl @@ -27,7 +27,7 @@ _OPENCV_SIMULATOR_PLATFORM_DIR_NAME = "ios-arm64_x86_64-simulator" _OPENCV_DEVICE_PLATFORM_DIR_NAME = "ios-arm64" def _select_headers_impl(ctx): - # Should match with `/`. Othewise `ios-arm64` matches to `ios-arm64_x86-64` + # Should match with `/`. Othewise `ios-arm64` matches with `ios-arm64_x86-64` _files = [f for f in ctx.files.srcs if (f.basename.endswith(".h") or f.basename.endswith(".hpp")) and f.dirname.find(ctx.attr.platform + "/") != -1]