Documentation Issue: MRZScannerViewConfig code example issues
Category: Accuracy + Freshness
Severity: Warning
Found by: docs-updater review mode (2026-02-25)
SDK: MRZ Scanner JavaScript Edition
Finding IDs: A8, F8
Problem
Two issues in the MRZScannerViewConfig section of api/mrz-scanner.md:
- Contradictory default value for
enableMultiFrameCrossFilter: The syntax code comment says // false by default but the example comment says // true by default. The customization guide confirms the default is true.
- Syntax error in example:
showPoweredByDynamsoft: false; uses a semicolon instead of a comma inside the object literal (line ~224).
Location
- Docs file:
api/mrz-scanner.md — MRZScannerViewConfig Syntax block and Example
Recommended Fix
- Change the syntax block comment from
// false by default to // true by default.
- Replace the semicolon after
showPoweredByDynamsoft: false with a comma.
Documentation Issue: MRZScannerViewConfig code example issues
Category: Accuracy + Freshness
Severity: Warning
Found by: docs-updater review mode (2026-02-25)
SDK: MRZ Scanner JavaScript Edition
Finding IDs: A8, F8
Problem
Two issues in the MRZScannerViewConfig section of
api/mrz-scanner.md:enableMultiFrameCrossFilter: The syntax code comment says// false by defaultbut the example comment says// true by default. The customization guide confirms the default istrue.showPoweredByDynamsoft: false;uses a semicolon instead of a comma inside the object literal (line ~224).Location
api/mrz-scanner.md— MRZScannerViewConfig Syntax block and ExampleRecommended Fix
// false by defaultto// true by default.showPoweredByDynamsoft: falsewith a comma.