diff --git a/README.md b/README.md index 835e25c..efef0b7 100644 --- a/README.md +++ b/README.md @@ -14,8 +14,9 @@ with [Substrate](https://docs.substrate.io/). ## Chopsticks Chopsticks can be used to create a local fork of a life network, copying all its storage values and override specific -storage values with a config file. The fork will create a block whenever an extrinsic is added to the tx-pool but -it will be stale otherwise, but exposes a fast-forward rpc to produce 'n' blocks, which is useful for scheduler testing. +storage values with a config file. The fork will create a block whenever an extrinsic is added to the tx-pool. +Otherwise, it will be stale, but exposes a fast-forward rpc to produce 'n' blocks, which is useful for scheduler +testing. Chopsticks can be used to: diff --git a/runtime/bajun/src/gov.rs b/runtime/bajun/src/gov.rs index b052ec9..9a42afd 100644 --- a/runtime/bajun/src/gov.rs +++ b/runtime/bajun/src/gov.rs @@ -44,7 +44,7 @@ pub type EnsureRootOrAllTechnicalCommittee = EitherOfDiverse< /// Council collective instance declaration. /// -/// The council primarily serves to optimize and balance the inclusive referendum system, +/// The council primarily serves to optimize and balance the inclusive referendum system /// by being allowed to propose external democracy proposals, which can be fast tracked and /// bypass the one active referendum at a time rule. /// @@ -85,7 +85,7 @@ impl pallet_membership::Config for Runtime { type WeightInfo = pallet_membership::weights::SubstrateWeight; } -/// The technical committee primarily serves to safeguard against malicious referenda, +/// The technical committee primarily serves to safeguard against malicious referenda /// and fast track critical referenda. pub type TechnicalCommitteeInstance = pallet_collective::Instance1;