diff options
author | Martin Robinson <mrobinson@igalia.com> | 2024-09-08 08:04:19 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-08 15:04:19 +0000 |
commit | e70507ca403c9475a92b3c1b8230fad08c9c7ab2 (patch) | |
tree | e13a67eacbaa5bbc664f026eb1ab5c1473b66668 /components/webgpu/poll_thread.rs | |
parent | f6ae05007751968f90a702b15c8b5083453ad8c7 (diff) | |
download | servo-e70507ca403c9475a92b3c1b8230fad08c9c7ab2.tar.gz servo-e70507ca403c9475a92b3c1b8230fad08c9c7ab2.zip |
tidy: Fix rustdoc warnings and add a tidy check for a common URL issue (#33366)
This change fixes all rustdoc errors and also adds a tidy check for a
very common rustdoc URL issue. Eventually rustdoc warnings should likely
cause the build to fail, but this catches those issues sooner in order
to not waste so much developer time.
Signed-off-by: Martin Robinson <mrobinson@igalia.com>
Diffstat (limited to 'components/webgpu/poll_thread.rs')
-rw-r--r-- | components/webgpu/poll_thread.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/webgpu/poll_thread.rs b/components/webgpu/poll_thread.rs index 060b5171ffb..b4b93de6912 100644 --- a/components/webgpu/poll_thread.rs +++ b/components/webgpu/poll_thread.rs @@ -42,7 +42,7 @@ pub(crate) struct Poller { handle: Option<JoinHandle<()>>, /// Lock for device maintain calls (in poll_all_devices and queue_submit) /// - /// This is workaround for wgpu deadlocks: https://github.com/gfx-rs/wgpu/issues/5572 + /// This is workaround for wgpu deadlocks: <https://github.com/gfx-rs/wgpu/issues/5572> lock: Arc<Mutex<()>>, } |