Fix window::Renderer link in iced_winit docs

This commit is contained in:
Héctor Ramón Jiménez 2020-04-02 03:58:47 +02:00
parent 743c8851d4
commit 4a498ed0e3

View File

@ -14,7 +14,7 @@
//! - A [`Widget`] trait, which is used to implement new widgets: from layout //! - A [`Widget`] trait, which is used to implement new widgets: from layout
//! requirements to event and drawing logic. //! requirements to event and drawing logic.
//! - A bunch of `Renderer` traits, meant to keep the crate renderer-agnostic. //! - A bunch of `Renderer` traits, meant to keep the crate renderer-agnostic.
//! - A [`window::Renderer`] trait, leveraging [`raw-window-handle`], which can be //! - A [`window::Backend`] trait, leveraging [`raw-window-handle`], which can be
//! implemented by graphical renderers that target _windows_. Window-based //! implemented by graphical renderers that target _windows_. Window-based
//! shells (like [`iced_winit`]) can use this trait to stay renderer-agnostic. //! shells (like [`iced_winit`]) can use this trait to stay renderer-agnostic.
//! //!
@ -31,7 +31,7 @@
//! [`druid`]: https://github.com/xi-editor/druid //! [`druid`]: https://github.com/xi-editor/druid
//! [`raw-window-handle`]: https://github.com/rust-windowing/raw-window-handle //! [`raw-window-handle`]: https://github.com/rust-windowing/raw-window-handle
//! [`Widget`]: widget/trait.Widget.html //! [`Widget`]: widget/trait.Widget.html
//! [`window::Renderer`]: window/trait.Renderer.html //! [`window::Backend`]: window/trait.Backend.html
//! [`UserInterface`]: struct.UserInterface.html //! [`UserInterface`]: struct.UserInterface.html
//! [renderer]: renderer/index.html //! [renderer]: renderer/index.html
#![deny(missing_docs)] #![deny(missing_docs)]