[docs] fix outdated priority comment in message.hpp (#4627)

Since the priority levels were inverted in #3132, this comment was incorrect.
This commit is contained in:
Ciaran Woodward
2020-03-03 09:05:55 -08:00
committed by GitHub
parent 6b8a77502d
commit e29e14b4fd
+1 -1
View File
@@ -105,7 +105,7 @@ struct MessageInfo
uint8_t mSubType : 4; ///< Identifies the message sub type.
bool mDirectTx : 1; ///< Used to indicate whether a direct transmission is required.
bool mLinkSecurity : 1; ///< Indicates whether or not link security is enabled.
uint8_t mPriority : 2; ///< Identifies the message priority level (lower value is higher priority).
uint8_t mPriority : 2; ///< Identifies the message priority level (higher value is higher priority).
bool mInPriorityQ : 1; ///< Indicates whether the message is queued in normal or priority queue.
bool mTxSuccess : 1; ///< Indicates whether the direct tx of the message was successful.
bool mDoNotEvict : 1; ///< Indicates whether or not this message may be evicted.