Skip to content

Commit

Permalink
Remove extraneous blank lines in doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
aturon committed May 17, 2022
1 parent 6e9c850 commit 819998c
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions tokio/src/runtime/builder.rs
Expand Up @@ -322,7 +322,6 @@ impl Builder {
/// ```
/// # use tokio::runtime;
/// # use std::sync::atomic::{AtomicUsize, Ordering};
///
/// # pub fn main() {
/// let rt = runtime::Builder::new_multi_thread()
/// .thread_name_fn(|| {
Expand Down Expand Up @@ -374,7 +373,6 @@ impl Builder {
///
/// ```
/// # use tokio::runtime;
///
/// # pub fn main() {
/// let runtime = runtime::Builder::new_multi_thread()
/// .on_thread_start(|| {
Expand All @@ -400,7 +398,6 @@ impl Builder {
///
/// ```
/// # use tokio::runtime;
///
/// # pub fn main() {
/// let runtime = runtime::Builder::new_multi_thread()
/// .on_thread_stop(|| {
Expand Down Expand Up @@ -509,7 +506,6 @@ impl Builder {
///
/// ```
/// # use tokio::runtime;
///
/// # pub fn main() {
/// let runtime = runtime::Builder::new_multi_thread()
/// .on_thread_unpark(|| {
Expand Down Expand Up @@ -578,7 +574,6 @@ impl Builder {
/// ```
/// # use tokio::runtime;
/// # use std::time::Duration;
///
/// # pub fn main() {
/// let rt = runtime::Builder::new_multi_thread()
/// .thread_keep_alive(Duration::from_millis(100))
Expand Down Expand Up @@ -606,7 +601,6 @@ impl Builder {
///
/// ```
/// # use tokio::runtime;
///
/// # pub fn main() {
/// let rt = runtime::Builder::new_multi_thread()
/// .global_queue_interval(31)
Expand Down Expand Up @@ -637,7 +631,6 @@ impl Builder {
///
/// ```
/// # use tokio::runtime;
///
/// # pub fn main() {
/// let rt = runtime::Builder::new_multi_thread()
/// .event_interval(31)
Expand Down

0 comments on commit 819998c

Please sign in to comment.