Skip to content

Commit

Permalink
Fix transforms datagen to work with both 46.0 and 46.1 (#5891)
Browse files Browse the repository at this point in the history
Split from #5890
  • Loading branch information
sffc authored Dec 11, 2024
1 parent b21d65a commit 08b5298
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion provider/source/src/transforms/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ impl CldrCache {
// I'm not sure why this errors
.replace("ə̃ {ə̃}+ → ə̃;", "")
// This does not escape the $, so the = is interpreted as a variable name
.replace(r#"$="#, r#"\$="#)
.replace(r#""$="#, r#""\$="#)
// Any-ASCII does not exist and should probably the Latin-ASCII
.replace("Any-ASCII", "Latin-ASCII")
// Non-canonical property names
Expand Down

0 comments on commit 08b5298

Please sign in to comment.