We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
async-busy-wait
1 parent af43bd4 commit 04c887cCopy full SHA for 04c887c
crates/ruff_linter/src/rules/flake8_async/rules/async_busy_wait.rs
@@ -35,8 +35,8 @@ use crate::rules::flake8_async::helpers::AsyncModule;
35
///
36
/// ## References
37
/// - [`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)
+/// - [`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)
40
#[derive(ViolationMetadata)]
41
pub(crate) struct AsyncBusyWait {
42
module: AsyncModule,
0 commit comments