diff --git a/pr/280/docs/src/bench/lib.rs.html b/pr/280/docs/src/bench/lib.rs.html
index c423d1314..56da6c782 100644
--- a/pr/280/docs/src/bench/lib.rs.html
+++ b/pr/280/docs/src/bench/lib.rs.html
@@ -236,8 +236,8 @@
236
237 fn from_str(s: &str) -> Result<Self, Self::Err> {
238 match s.to_lowercase().as_str() {
-239 "tokio" => Ok(RuntimeType::Tokio),
-240 "tokio-current-thread" => Ok(RuntimeType::TokioCurrentThread),
+239 "tokio" => Ok(Self::Tokio),
+240 "tokio-current-thread" => Ok(Self::TokioCurrentThread),
241 _ => Err(anyhow::anyhow!("Unknown runtime type {}", s)),
242 }
243 }