summaryrefslogtreecommitdiffstats
path: root/native
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2020-10-17 21:12:09 +0200
committerLibravatar GitHub <noreply@github.com>2020-10-17 21:12:09 +0200
commit23647d2f50f0e177b93cf09c72886a90702df982 (patch)
treeba9a01a45615f712a346f3b4ddf288aaad0f456e /native
parentbefeb3222501c03d412bf8e3f0041afa0d135081 (diff)
parent461499dd62fdacd3dcbe9ffec5c069b3468d4238 (diff)
downloadiced-23647d2f50f0e177b93cf09c72886a90702df982.tar.gz
iced-23647d2f50f0e177b93cf09c72886a90702df982.tar.bz2
iced-23647d2f50f0e177b93cf09c72886a90702df982.zip
Merge pull request #545 from MonliH/master
Remove outdated `Fill` comment for `Column` and `Row`
Diffstat (limited to 'native')
-rw-r--r--native/src/widget/column.rs4
-rw-r--r--native/src/widget/row.rs4
2 files changed, 0 insertions, 8 deletions
diff --git a/native/src/widget/column.rs b/native/src/widget/column.rs
index df21cdde..a5ac2101 100644
--- a/native/src/widget/column.rs
+++ b/native/src/widget/column.rs
@@ -9,10 +9,6 @@ use crate::{
use std::u32;
/// 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)]
pub struct Column<'a, Message, Renderer> {
spacing: u16,
diff --git a/native/src/widget/row.rs b/native/src/widget/row.rs
index 263f78d3..b37a5cfc 100644
--- a/native/src/widget/row.rs
+++ b/native/src/widget/row.rs
@@ -9,10 +9,6 @@ use crate::{
use std::u32;
/// 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)]
pub struct Row<'a, Message, Renderer> {
spacing: u16,