Skip to content

Commit 5de1242

Browse files
authored
Fix typo in describedMath a11y feature (#731)
1 parent 8c1bfeb commit 5de1242

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ All notable changes to this project will be documented in this file. Take a look
1919
* You must ensure the identifier is unique and stable for the device (persist and reuse across app launches).
2020
* Recommended: generate an app-scoped UUID and store it securely. Avoid hardware or advertising identifiers.
2121

22+
### Fixed
23+
24+
#### Shared
25+
26+
* Fixed a typo in the accessibility metadata (`describeMath` should be `describedMath`).
27+
2228

2329
## [3.1.2]
2430

readium/shared/src/main/java/org/readium/r2/shared/publication/Accessibility.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ public data class Accessibility(
447447
* Textual descriptions of math equations are included, whether in the alt attribute
448448
* for image-based equations,
449449
*/
450-
public val DESCRIBED_MATH: Feature = Feature("describeMath")
450+
public val DESCRIBED_MATH: Feature = Feature("describedMath")
451451

452452
/**
453453
* Descriptions are provided for image-based visual content and/or complex structures

0 commit comments

Comments
 (0)