From 4cbb37853281615dd5c8d7009c5ab2b44f7ab0a5 Mon Sep 17 00:00:00 2001 From: Stan Bondi Date: Mon, 3 Oct 2022 14:48:24 +0200 Subject: [PATCH] fix(core): broken doctests (#4763) Description --- Broken doctest Motivation and Context --- https://github.com/tari-project/tari/actions/runs/3174089465/jobs/5170456712 How Has This Been Tested? --- cargo test --doc --- base_layer/core/src/consensus/emission.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base_layer/core/src/consensus/emission.rs b/base_layer/core/src/consensus/emission.rs index 04b8b40915..9fc2ecae95 100644 --- a/base_layer/core/src/consensus/emission.rs +++ b/base_layer/core/src/consensus/emission.rs @@ -68,7 +68,7 @@ impl EmissionSchedule { /// /// We can then apply a very fast multiplication using bitwise operations. If the decay factor, ϵ, is represented /// in the array `**k**` then - /// ``` + /// ```ignore /// intfloor(x, (1 - ϵ)) = x - sum(x >> k_i) /// ``` ///