diff options
Diffstat (limited to 'src/tlds.rs')
| -rw-r--r-- | src/tlds.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tlds.rs b/src/tlds.rs index 2835c24..95697d0 100644 --- a/src/tlds.rs +++ b/src/tlds.rs @@ -52,8 +52,8 @@ static PARSED_LISTS: OnceLock<ParsedLists> = OnceLock::new(); fn parsed_lists() -> &'static ParsedLists { PARSED_LISTS.get_or_init(|| { - let raw: toml::Value = toml::from_str(include_str!("../Lists.toml")) - .expect("Lists.toml must be valid TOML"); + let raw: toml::Value = + toml::from_str(include_str!("../Lists.toml")).expect("Lists.toml must be valid TOML"); let table = raw.as_table().expect("Lists.toml must be a TOML table"); |
