Skip to content

Commit 2340250

Browse files
committed
Make no format block text
1 parent e765cee commit 2340250

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/task/blocking.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ lazy_static! {
123123
/// This allows us to find the EMA value.
124124
/// This value represents the trend of tasks mapped onto the thread pool.
125125
/// Calculation is following:
126-
/// ```
126+
/// ```text
127127
/// +--------+-----------------+----------------------------------+
128128
/// | Symbol | Identifier | Explanation |
129129
/// +--------+-----------------+----------------------------------+
@@ -133,7 +133,7 @@ lazy_static! {
133133
/// +--------+-----------------+----------------------------------+
134134
/// ```
135135
/// Under these definitions formula is following:
136-
/// ```
136+
/// ```text
137137
/// EMA = α * [ Yt + (1 - α)*Yt-1 + ((1 - α)^2)*Yt-2 + ((1 - α)^3)*Yt-3 ... ] + St
138138
/// ```
139139
/// # Arguments

0 commit comments

Comments
 (0)