Skip to content

Commit 04c887c

Browse files
authored
Fix references for async-busy-wait (#14775)
1 parent af43bd4 commit 04c887c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/ruff_linter/src/rules/flake8_async/rules/async_busy_wait.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ use crate::rules::flake8_async::helpers::AsyncModule;
3535
///
3636
/// ## References
3737
/// - [`asyncio` events](https://docs.python.org/3/library/asyncio-sync.html#asyncio.Event)
38-
/// - [`anyio` events](https://trio.readthedocs.io/en/latest/reference-core.html#trio.Event)
39-
/// - [`trio` events](https://anyio.readthedocs.io/en/latest/api.html#anyio.Event)
38+
/// - [`anyio` events](https://anyio.readthedocs.io/en/latest/api.html#anyio.Event)
39+
/// - [`trio` events](https://trio.readthedocs.io/en/latest/reference-core.html#trio.Event)
4040
#[derive(ViolationMetadata)]
4141
pub(crate) struct AsyncBusyWait {
4242
module: AsyncModule,

0 commit comments

Comments
 (0)