Skip to content

Commit 0d4ab2a

Browse files
authored
No wildcard patterns in Cargo.toml (paritytech#1789)
* dependabot doesn't support wildcard patterns in cargo.toml and we want dependabot * spelling for "fresh" crates * and fmt * spelling again
1 parent 82e1083 commit 0d4ab2a

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

bin/runtime-common/src/integrity.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ macro_rules! assert_bridge_messages_pallet_types(
101101

102102
/// Macro that combines four other macro calls - `assert_chain_types`, `assert_bridge_types`,
103103
/// `assert_bridge_grandpa_pallet_types` and `assert_bridge_messages_pallet_types`. It may be used
104-
/// at the chain that is implemeting complete standard messages bridge (i.e. with bridge GRANDPA and
105-
/// messages pallets deployed).
104+
/// at the chain that is implementing complete standard messages bridge (i.e. with bridge GRANDPA
105+
/// and messages pallets deployed).
106106
#[macro_export]
107107
macro_rules! assert_complete_bridge_types(
108108
(

bin/runtime-common/src/messages.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,13 +163,13 @@ pub mod source {
163163
#[derive(RuntimeDebug)]
164164
pub struct FromThisChainMessageVerifier<B>(PhantomData<B>);
165165

166-
/// The error message returned from LaneMessageVerifier when outbound lane is disabled.
166+
/// The error message returned from `LaneMessageVerifier` when outbound lane is disabled.
167167
pub const MESSAGE_REJECTED_BY_OUTBOUND_LANE: &str =
168168
"The outbound message lane has rejected the message.";
169-
/// The error message returned from LaneMessageVerifier when too many pending messages at the
169+
/// The error message returned from `LaneMessageVerifier` when too many pending messages at the
170170
/// lane.
171171
pub const TOO_MANY_PENDING_MESSAGES: &str = "Too many pending messages at the lane.";
172-
/// The error message returned from LaneMessageVerifier when call origin is mismatch.
172+
/// The error message returned from `LaneMessageVerifier` when call origin is mismatch.
173173
pub const BAD_ORIGIN: &str = "Unable to match the source origin to expected target origin.";
174174

175175
impl<B> LaneMessageVerifier<OriginOf<ThisChain<B>>, FromThisChainMessagePayload>

bin/runtime-common/src/mock.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,8 @@ impl pallet_bridge_relayers::Config for TestRuntime {
245245
type WeightInfo = ();
246246
}
247247

248-
/// Bridge that is deployed on ThisChain and allows sending/receiving messages to/from
249-
/// BridgedChain.
248+
/// Bridge that is deployed on `ThisChain` and allows sending/receiving messages to/from
249+
/// `BridgedChain`.
250250
#[derive(Debug, PartialEq, Eq)]
251251
pub struct OnThisChainBridge;
252252

@@ -260,8 +260,8 @@ impl MessageBridge for OnThisChainBridge {
260260
type BridgedHeaderChain = pallet_bridge_grandpa::GrandpaChainHeaders<TestRuntime, ()>;
261261
}
262262

263-
/// Bridge that is deployed on BridgedChain and allows sending/receiving messages to/from
264-
/// ThisChain;
263+
/// Bridge that is deployed on `BridgedChain` and allows sending/receiving messages to/from
264+
/// `ThisChain`.
265265
#[derive(Debug, PartialEq, Eq)]
266266
pub struct OnBridgedChainBridge;
267267

0 commit comments

Comments
 (0)