File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 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 {
523523/// It can also be applied to parts of expressions, such as `likely(a) && unlikely(b)`, or to
524524/// compound expressions, such as `likely(a && b)`. When applied to compound expressions, it has
525525/// the following effect:
526- /// ```
526+ /// ```text
527527/// likely(!a) => !unlikely(a)
528528/// likely(a && b) => likely(a) && likely(b)
529529/// likely(a || b) => a || likely(b)
@@ -576,7 +576,7 @@ pub const fn likely(b: bool) -> bool {
576576/// It can also be applied to parts of expressions, such as `likely(a) && unlikely(b)`, or to
577577/// compound expressions, such as `unlikely(a && b)`. When applied to compound expressions, it has
578578/// the following effect:
579- /// ```
579+ /// ```text
580580/// unlikely(!a) => !likely(a)
581581/// unlikely(a && b) => a && unlikely(b)
582582/// unlikely(a || b) => unlikely(a) || unlikely(b)
You can’t perform that action at this time.
0 commit comments