Prefer [foo][bar] over [foo](bar) for intra-doc links (#3191)

This commit is contained in:
daxpedda 2024-03-16 10:22:29 +01:00 committed by GitHub
parent c10f9c32d3
commit baf10de958
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 18 additions and 18 deletions

View file

@ -11,7 +11,7 @@ pub trait ApplicationHandler<T: 'static = ()> {
/// This is a useful place to put code that should be done before you start processing
/// events, such as updating frame timing information for benchmarking or checking the
/// [`StartCause`] to see if a timer set by
/// [`ControlFlow::WaitUntil`](crate::event_loop::ControlFlow::WaitUntil) has elapsed.
/// [`ControlFlow::WaitUntil`][crate::event_loop::ControlFlow::WaitUntil] has elapsed.
fn new_events(&mut self, event_loop: &ActiveEventLoop, cause: StartCause) {
let _ = (event_loop, cause);
}