Fix missing link

This commit is contained in:
Alexandre Bury 2018-01-20 21:18:29 -08:00
parent c84bbbdf45
commit b0f4dfbc17

View File

@ -107,11 +107,14 @@
//! On top of a color style, some effects can be applied on cells: `Reverse`, //! On top of a color style, some effects can be applied on cells: `Reverse`,
//! for instance, swaps the foreground and background colors of a cell. //! for instance, swaps the foreground and background colors of a cell.
//! //!
//!
//! # Style //! # Style
//! //!
//! Finally, a style combine a [`ColorType`] and a set of [`Effect`]s, to //! Finally, a style combine a [`ColorType`] and a set of [`Effect`]s, to
//! represent any way text should be printed on screen. //! represent any way text should be printed on screen.
//! //!
//! [`Effect`]: enum.Effect.html
//!
//! # Themes //! # Themes
//! //!
//! A theme defines the color palette an application will use, as well as //! A theme defines the color palette an application will use, as well as