Write renderer docs and fix broken links

This commit is contained in:
Héctor Ramón Jiménez 2019-08-29 01:28:00 +02:00
parent 268a5f0017
commit fafad2dfca
12 changed files with 62 additions and 45 deletions

View file

@ -2,8 +2,8 @@
//!
//! # Built-in widgets
//! Every built-in drawable widget has its own module with a `Renderer` trait
//! that must be implemented by an [`iced::Renderer`] before being able to use
//! it as a [`Widget`].
//! that must be implemented by a [renderer] before being able to use it as
//! a [`Widget`].
//!
//! # Custom widgets
//! If you want to implement a custom widget, you simply need to implement the
@ -19,7 +19,7 @@
//! ```
//!
//! [`Widget`]: trait.Widget.html
//! [`iced::Renderer`]: ../trait.Renderer.html
//! [renderer]: ../renderer/index.html
mod column;
mod row;