Documentation Issue: retake should be rescan in MRZResultViewToolbarButtonsConfig
Category: Accuracy
Severity: Error
Found by: docs-updater review mode (2026-02-25)
SDK: MRZ Scanner JavaScript Edition
Finding IDs: A2, A10, A11
Problem
The MRZResultViewToolbarButtonsConfig interface uses a property named retake throughout the docs, but the actual SDK source defines it as rescan. This mismatch appears in three locations.
Locations
api/mrz-scanner.md — MRZResultViewToolbarButtonsConfig syntax block and properties table
api/mrz-scanner.md — MRZResultViewConfig example (line ~289)
guides/mrz-scanner-customization.md — MRZResultViewConfig example (line ~203)
Expected (from source)
interface MRZResultViewToolbarButtonsConfig {
cancel?: ToolbarButton;
rescan?: ToolbarButtonConfig;
done?: ToolbarButtonConfig;
}
Actual (in docs)
interface MRZResultViewToolbarButtonsConfig {
retake?: ToolbarButtonConfig;
done?: ToolbarButtonConfig;
cancel?: ToolbarButtonConfig;
}
Recommended Fix
Replace retake with rescan in all three locations: the syntax block, the properties table, and all code examples.
Documentation Issue:
retakeshould berescanin MRZResultViewToolbarButtonsConfigCategory: Accuracy
Severity: Error
Found by: docs-updater review mode (2026-02-25)
SDK: MRZ Scanner JavaScript Edition
Finding IDs: A2, A10, A11
Problem
The
MRZResultViewToolbarButtonsConfiginterface uses a property namedretakethroughout the docs, but the actual SDK source defines it asrescan. This mismatch appears in three locations.Locations
api/mrz-scanner.md— MRZResultViewToolbarButtonsConfig syntax block and properties tableapi/mrz-scanner.md— MRZResultViewConfig example (line ~289)guides/mrz-scanner-customization.md— MRZResultViewConfig example (line ~203)Expected (from source)
Actual (in docs)
Recommended Fix
Replace
retakewithrescanin all three locations: the syntax block, the properties table, and all code examples.