From 04c887c8fce0521a8a98cee04349199ac256a67a Mon Sep 17 00:00:00 2001 From: Well404 <40534114+Well2333@users.noreply.github.com> Date: Thu, 5 Dec 2024 01:05:49 +0800 Subject: [PATCH] Fix references for `async-busy-wait` (#14775) --- .../src/rules/flake8_async/rules/async_busy_wait.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/ruff_linter/src/rules/flake8_async/rules/async_busy_wait.rs b/crates/ruff_linter/src/rules/flake8_async/rules/async_busy_wait.rs index c5da23555a5fa8..caf27b393d04a8 100644 --- a/crates/ruff_linter/src/rules/flake8_async/rules/async_busy_wait.rs +++ b/crates/ruff_linter/src/rules/flake8_async/rules/async_busy_wait.rs @@ -35,8 +35,8 @@ use crate::rules::flake8_async::helpers::AsyncModule; /// /// ## References /// - [`asyncio` events](https://docs.python.org/3/library/asyncio-sync.html#asyncio.Event) -/// - [`anyio` events](https://trio.readthedocs.io/en/latest/reference-core.html#trio.Event) -/// - [`trio` events](https://anyio.readthedocs.io/en/latest/api.html#anyio.Event) +/// - [`anyio` events](https://anyio.readthedocs.io/en/latest/api.html#anyio.Event) +/// - [`trio` events](https://trio.readthedocs.io/en/latest/reference-core.html#trio.Event) #[derive(ViolationMetadata)] pub(crate) struct AsyncBusyWait { module: AsyncModule,