Skip to content

Commit

Permalink
fix: fmt event_loop.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
marc2332 committed May 28, 2024
1 parent c39703e commit 658acb2
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions glutin-winit/src/event_loop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ use crate::private::Sealed;
pub trait GlutinEventLoop: Sealed {
/// Create the window.
///
/// Possible causes of error include denied permission, incompatible system, and lack of memory.
/// Possible causes of error include denied permission, incompatible system,
/// and lack of memory.
///
/// ## Platform-specific
///
/// - **Web:** The window is created but not inserted into the web page automatically. Please
/// see the web platform module for more information.
/// - **Web:** The window is created but not inserted into the web page
/// automatically. Please see the web platform module for more
/// information.
fn create_window(&self, window_attributes: WindowAttributes) -> Result<Window, OsError>;

/// Get a handle to the display controller of the windowing system.
Expand Down

0 comments on commit 658acb2

Please sign in to comment.