No wildcard patterns in Cargo.toml (#1789)

* dependabot doesn't support wildcard patterns in cargo.toml and we want dependabot

* spelling for "fresh" crates

* and fmt

* spelling again
This commit is contained in:
Svyatoslav Nikolsky
2023-01-20 12:14:20 +03:00
committed by Bastian Köcher
parent ec9cd8ddb0
commit 1b608e4b9f
3 changed files with 9 additions and 9 deletions
+4 -4
View File
@@ -245,8 +245,8 @@ impl pallet_bridge_relayers::Config for TestRuntime {
type WeightInfo = ();
}
/// Bridge that is deployed on ThisChain and allows sending/receiving messages to/from
/// BridgedChain.
/// Bridge that is deployed on `ThisChain` and allows sending/receiving messages to/from
/// `BridgedChain`.
#[derive(Debug, PartialEq, Eq)]
pub struct OnThisChainBridge;
@@ -260,8 +260,8 @@ impl MessageBridge for OnThisChainBridge {
type BridgedHeaderChain = pallet_bridge_grandpa::GrandpaChainHeaders<TestRuntime, ()>;
}
/// Bridge that is deployed on BridgedChain and allows sending/receiving messages to/from
/// ThisChain;
/// Bridge that is deployed on `BridgedChain` and allows sending/receiving messages to/from
/// `ThisChain`.
#[derive(Debug, PartialEq, Eq)]
pub struct OnBridgedChainBridge;