Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ All notable changes to this project will be documented in this file. Take a look
* You must ensure the identifier is unique and stable for the device (persist and reuse across app launches).
* Recommended: generate an app-scoped UUID and store it securely. Avoid hardware or advertising identifiers.

### Fixed

#### Shared

* Fixed a typo in the accessibility metadata (`describeMath` should be `describedMath`).


## [3.1.2]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ public data class Accessibility(
* Textual descriptions of math equations are included, whether in the alt attribute
* for image-based equations,
*/
public val DESCRIBED_MATH: Feature = Feature("describeMath")
public val DESCRIBED_MATH: Feature = Feature("describedMath")

/**
* Descriptions are provided for image-based visual content and/or complex structures
Expand Down