From 32770a438319d9b34956f7c57f1a841189f8e092 Mon Sep 17 00:00:00 2001 From: Malte Kliemann Date: Thu, 19 May 2022 11:09:49 +0200 Subject: [PATCH] Add missing markdown code block delimiter (#5555) --- polkadot/runtime/common/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/polkadot/runtime/common/src/lib.rs b/polkadot/runtime/common/src/lib.rs index d9dac14a0f..0a6ca7b6e9 100644 --- a/polkadot/runtime/common/src/lib.rs +++ b/polkadot/runtime/common/src/lib.rs @@ -226,6 +226,7 @@ impl pallet_staking::BenchmarkingConfig for StakingBenchmarkingConfig { /// pub LaunchPeriod: BlockNumber = prod_or_fast!(7 * DAYS, 1, "KSM_LAUNCH_PERIOD"); /// pub const VotingPeriod: BlockNumber = prod_or_fast!(7 * DAYS, 1 * MINUTES); /// } +/// ``` #[macro_export] macro_rules! prod_or_fast { ($prod:expr, $test:expr) => {