From 07280e7fbdf697b3b9dd477becd86bb115f5cdad Mon Sep 17 00:00:00 2001 From: Fredrik Simonsson Date: Fri, 3 Nov 2023 09:28:51 +0900 Subject: [PATCH] Auto reformat --- core/src/state.rs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/core/src/state.rs b/core/src/state.rs index 933b9915daa..03d986dc2ca 100644 --- a/core/src/state.rs +++ b/core/src/state.rs @@ -109,12 +109,15 @@ pub enum TryRuntimeFeatureCheck { } /// Options for [`to_ext`] /// -/// Whether to check if the new runtime `spec_version` is greater than the previous runtime `spec_version` +/// Whether to check if the new runtime `spec_version` is greater than the previous runtime +/// `spec_version` #[derive(PartialEq, PartialOrd)] pub enum SpecVersionCheck { - /// Check that the new runtime `spec_version` is greater than the previous runtime `spec_version` + /// Check that the new runtime `spec_version` is greater than the previous runtime + /// `spec_version` Check, - /// Don't check that the new runtime `spec_version` is greater than the previous runtime `spec_version` + /// Don't check that the new runtime `spec_version` is greater than the previous runtime + /// `spec_version` Skip, }