diff options
author | Martin Fischer <martin@push-f.com> | 2023-09-04 20:47:52 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-09-28 10:36:08 +0200 |
commit | bd446b6123e0b077a48e9f1e836affac78822f44 (patch) | |
tree | 67be9838c95e03e967c59992d34e18c2ca1947ea /html5lib_tests | |
parent | 4e0057344381a50cd76419be170eab3d9389f034 (diff) |
chore: rename internal states as well
See the previous commit.
Diffstat (limited to 'html5lib_tests')
-rw-r--r-- | html5lib_tests/src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/html5lib_tests/src/lib.rs b/html5lib_tests/src/lib.rs index 6cf46db..c473eb1 100644 --- a/html5lib_tests/src/lib.rs +++ b/html5lib_tests/src/lib.rs @@ -13,11 +13,11 @@ pub enum InitialState { #[serde(rename = "Data state")] Data, #[serde(rename = "PLAINTEXT state")] - PlainText, + Plaintext, #[serde(rename = "RCDATA state")] - RcData, + Rcdata, #[serde(rename = "RAWTEXT state")] - RawText, + Rawtext, #[serde(rename = "Script data state")] ScriptData, #[serde(rename = "CDATA section state")] |