File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -523,7 +523,7 @@ pub const fn must_use<T>(value: T) -> T {
523
523
/// It can also be applied to parts of expressions, such as `likely(a) && unlikely(b)`, or to
524
524
/// compound expressions, such as `likely(a && b)`. When applied to compound expressions, it has
525
525
/// the following effect:
526
- /// ```
526
+ /// ```text
527
527
/// likely(!a) => !unlikely(a)
528
528
/// likely(a && b) => likely(a) && likely(b)
529
529
/// likely(a || b) => a || likely(b)
@@ -576,7 +576,7 @@ pub const fn likely(b: bool) -> bool {
576
576
/// It can also be applied to parts of expressions, such as `likely(a) && unlikely(b)`, or to
577
577
/// compound expressions, such as `unlikely(a && b)`. When applied to compound expressions, it has
578
578
/// the following effect:
579
- /// ```
579
+ /// ```text
580
580
/// unlikely(!a) => !likely(a)
581
581
/// unlikely(a && b) => a && unlikely(b)
582
582
/// unlikely(a || b) => unlikely(a) || unlikely(b)
You can’t perform that action at this time.
0 commit comments