Merge pull request #545 from MonliH/master

Remove outdated `Fill` comment for `Column` and `Row`
This commit is contained in:
Héctor Ramón 2020-10-17 21:12:09 +02:00 committed by GitHub
commit 23647d2f50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 8 deletions

View File

@ -9,10 +9,6 @@ use crate::{
use std::u32; use std::u32;
/// A container that distributes its contents vertically. /// A container that distributes its contents vertically.
///
/// A [`Column`] will try to fill the horizontal space of its container.
///
/// [`Column`]: struct.Column.html
#[allow(missing_debug_implementations)] #[allow(missing_debug_implementations)]
pub struct Column<'a, Message, Renderer> { pub struct Column<'a, Message, Renderer> {
spacing: u16, spacing: u16,

View File

@ -9,10 +9,6 @@ use crate::{
use std::u32; use std::u32;
/// A container that distributes its contents horizontally. /// A container that distributes its contents horizontally.
///
/// A [`Row`] will try to fill the horizontal space of its container.
///
/// [`Row`]: struct.Row.html
#[allow(missing_debug_implementations)] #[allow(missing_debug_implementations)]
pub struct Row<'a, Message, Renderer> { pub struct Row<'a, Message, Renderer> {
spacing: u16, spacing: u16,