Skip to content

Commit

Permalink
docs: remove unpaired closing tags (#1722)
Browse files Browse the repository at this point in the history
  • Loading branch information
tesaguri committed Nov 17, 2021
1 parent b439705 commit e51f083
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tracing-core/src/dispatch.rs
Expand Up @@ -291,7 +291,7 @@ pub fn set_default(dispatcher: &Dispatch) -> DefaultGuard {
/// Returns `Err` if the global default has already been set.
///
///
/// </div><div class="example-wrap" style="display:inline-block"><pre class="compile_fail" style="white-space:normal;font:inherit;">
/// <div class="example-wrap" style="display:inline-block"><pre class="compile_fail" style="white-space:normal;font:inherit;">
/// <strong>Warning</strong>: In general, libraries should <em>not</em> call
/// <code>set_global_default()</code>! Doing so will cause conflicts when
/// executables that depend on the library try to set the default collector later.
Expand Down
2 changes: 1 addition & 1 deletion tracing/src/lib.rs
Expand Up @@ -52,7 +52,7 @@
//! The [`span` module][mod@span]'s documentation provides further details on how to
//! use spans.
//!
//! </div><div class="example-wrap" style="display:inline-block"><pre class="compile_fail" style="white-space:normal;font:inherit;">
//! <div class="example-wrap" style="display:inline-block"><pre class="compile_fail" style="white-space:normal;font:inherit;">
//!
//! **Warning**: In asynchronous code that uses async/await syntax,
//! `Span::enter` may produce incorrect traces if the returned drop
Expand Down
2 changes: 1 addition & 1 deletion tracing/src/span.rs
Expand Up @@ -76,7 +76,7 @@
//! // Dropping the `_enter` guard will exit the span.
//!```
//!
//! </div><div class="example-wrap" style="display:inline-block"><pre class="compile_fail" style="white-space:normal;font:inherit;">
//! <div class="example-wrap" style="display:inline-block"><pre class="compile_fail" style="white-space:normal;font:inherit;">
//!
//! **Warning**: In asynchronous code that uses async/await syntax,
//! [`Span::enter`] may produce incorrect traces if the returned drop
Expand Down

0 comments on commit e51f083

Please sign in to comment.