Skip to content

Commit 31f59c1

Browse files
committed
Fix doc warnings
1 parent 2f7b68a commit 31f59c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

splashsurf_lib/src/profiling.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ use std::sync::LazyLock;
1010
use std::time::{Duration, Instant};
1111
use thread_local::ThreadLocal;
1212

13-
/// Thread local storage of the [`Profiler`](Profiler)s storing all [`Scope`](Scope)s of the thread
13+
/// Thread local storage of the [`Profiler`]s storing all `Scope`s of the thread
1414
pub static PROFILER: LazyLock<ThreadLocal<RwLock<Profiler>>> = LazyLock::new(ThreadLocal::new);
1515

16-
/// `RandomState` used to obtain `Hasher`s to hash [`ScopeId`](ScopeId)s for parent/child identification
16+
/// `RandomState` used to obtain `Hasher`s to hash [`ScopeId`]s for parent/child identification
1717
pub static RANDOM_STATE: LazyLock<RandomState> = LazyLock::new(RandomState::new);
1818

1919
/// Implementation of the profile macro, use [`profile`](crate::profile) instead

0 commit comments

Comments
 (0)