1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

Merge pull request #28309 from raimbekovm:fix-typos-batch6

docs: fix typos in documentation and code comments #28309

## Summary

This PR fixes 10 spelling errors in documentation and code comments across 7 files.

## Changes
- `suppport` → `support` (2 occurrences in test_video_io.cpp)
- `compability` → `compatibility` (2 occurrences in face.hpp)
- `successfull` → `successful` (1 occurrence in cv2.cpp)
- `accomodate` → `accommodate` (2 occurrences in calib3d.hpp and test_camera.cpp)
- `minimun` → `minimum` (1 occurrence in aruco_detector.hpp)
- `maximun` → `maximum` (1 occurrence in aruco_detector.hpp)
- `orignal` → `original` (1 occurrence in aruco_detector.cpp)

## Test plan
- [x] No API changes
- [x] Documentation-only changes
- [x] Code compiles without errors
This commit is contained in:
Murat Raimbekov
2026-03-03 17:29:47 +06:00
committed by GitHub
parent 1099135b88
commit 91c78f5064
24 changed files with 54 additions and 44 deletions
@@ -13,7 +13,7 @@
#endif
#include "tbb/tbb.h"
#if !defined(TBB_INTERFACE_VERSION)
#error "Unknows/unsupported TBB version"
#error "Unknown/unsupported TBB version"
#endif
#if TBB_INTERFACE_VERSION >= 8000
+3 -3
View File
@@ -69,7 +69,7 @@ protected:
bool TestSparseMat();
bool TestVec();
bool TestMatxMultiplication();
bool TestMatxElementwiseDivison();
bool TestMatxElementwiseDivision();
bool TestDivisionByValue();
bool TestInplaceDivisionByValue();
bool TestMatMatxCastSum();
@@ -957,7 +957,7 @@ bool CV_OperationsTest::TestMatMatxCastSum()
return true;
}
bool CV_OperationsTest::TestMatxElementwiseDivison()
bool CV_OperationsTest::TestMatxElementwiseDivision()
{
try
{
@@ -1248,7 +1248,7 @@ void CV_OperationsTest::run( int /* start_from */)
if (!TestMatxMultiplication())
return;
if (!TestMatxElementwiseDivison())
if (!TestMatxElementwiseDivision())
return;
if (!TestDivisionByValue())