From 9b8a5a4a6a39374acbcacd95819e9f02aacddafc Mon Sep 17 00:00:00 2001 From: Mark Rowe Date: Wed, 7 May 2025 06:48:47 -0700 Subject: [Rust] Fix a pre-existing formatting issue CI is complaining about --- plugins/svd/src/settings.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'plugins/svd/src/settings.rs') diff --git a/plugins/svd/src/settings.rs b/plugins/svd/src/settings.rs index 9b4a9e07..9621da64 100644 --- a/plugins/svd/src/settings.rs +++ b/plugins/svd/src/settings.rs @@ -30,9 +30,11 @@ impl LoadSettings { "default" : Self::ADD_BACKING_REGIONS_DEFAULT, "description" : "Whether to add backing regions. Backing regions allow you to write to the underlying memory of a view, but will take up space in the BNDB.", }); - bn_settings - .register_setting_json(Self::ADD_BACKING_REGIONS_SETTING, add_backing_region_props.to_string()); - + bn_settings.register_setting_json( + Self::ADD_BACKING_REGIONS_SETTING, + add_backing_region_props.to_string(), + ); + let add_bitfields_props = json!({ "title" : "Add Bitfields", "type" : "boolean", -- cgit v1.3.1