From 9ca5f5e6fed5b96a6e2ae999e8c50e8e17b334d4 Mon Sep 17 00:00:00 2001 From: Gavin Wood Date: Sat, 16 Oct 2021 15:57:03 +0200 Subject: [PATCH] Fix typos in docs (#4092) * Fix typos * Update ump.rs * Update ump.rs * Update ump.rs --- polkadot/runtime/parachains/src/ump.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/polkadot/runtime/parachains/src/ump.rs b/polkadot/runtime/parachains/src/ump.rs index b7a1c9f508..47111e357d 100644 --- a/polkadot/runtime/parachains/src/ump.rs +++ b/polkadot/runtime/parachains/src/ump.rs @@ -202,20 +202,20 @@ pub mod pallet { /// Upward message executed with the given outcome. /// \[ id, outcome \] ExecutedUpward(MessageId, Outcome), - /// The weight limit for handling downward messages was reached. + /// The weight limit for handling upward messages was reached. /// \[ id, remaining, required \] WeightExhausted(MessageId, Weight, Weight), - /// Some downward messages have been received and will be processed. + /// Some upward messages have been received and will be processed. /// \[ para, count, size \] UpwardMessagesReceived(ParaId, u32, u32), - /// The weight budget was exceeded for an individual downward message. + /// The weight budget was exceeded for an individual upward message. /// /// This message can be later dispatched manually using `service_overweight` dispatchable /// using the assigned `overweight_index`. /// /// \[ para, id, overweight_index, required \] OverweightEnqueued(ParaId, MessageId, OverweightIndex, Weight), - /// Downward message from the overweight queue was executed with the given actual weight + /// Upward message from the overweight queue was executed with the given actual weight /// used. /// /// \[ overweight_index, used \]