Skip to content

Commit

Permalink
fix crate scoping in doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
beeryt committed Mar 17, 2023
1 parent 2bf7bd5 commit aecb69c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/bevy_winit/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#![warn(missing_docs)]
//! `bevy_winit` provides utilities to handle window creation and the eventloop through [`winit`]
//!
//! Most commonly, the [`WinitPlugin`] is used as part of [`DefaultPlugins`](bevy::DefaultPlugins).
//! The app's [runner](bevy_app::App::runner) is set by `WinitPlugin` and handles the [`winit::EventLoop`].
//! Most commonly, the [`WinitPlugin`] is used as part of [`DefaultPlugins`](crate::bevy::DefaultPlugins).
//! The app's [runner](bevy_app::App::runner) is set by `WinitPlugin` and handles the `winit` [`EventLoop`](winit::event_loop::EventLoop).
//! See `winit_runner` for details.

pub mod accessibility;
Expand Down

0 comments on commit aecb69c

Please sign in to comment.