diff options
author | 2019-08-28 06:45:39 +0200 | |
---|---|---|
committer | 2019-08-28 06:45:39 +0200 | |
commit | 8758dd446f25553049b6dd2ab9be0007febb4877 (patch) | |
tree | ab43af4c5ef6027ed5effb44534e4d2429a296fa /src/widget | |
parent | 5dbcf211ef1a157586454bd5316ef3f7f93018c4 (diff) | |
download | iced-8758dd446f25553049b6dd2ab9be0007febb4877.tar.gz iced-8758dd446f25553049b6dd2ab9be0007febb4877.tar.bz2 iced-8758dd446f25553049b6dd2ab9be0007febb4877.zip |
Write more documentation
Diffstat (limited to 'src/widget')
-rw-r--r-- | src/widget/column.rs | 2 | ||||
-rw-r--r-- | src/widget/row.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/widget/column.rs b/src/widget/column.rs index 291019b2..d2688912 100644 --- a/src/widget/column.rs +++ b/src/widget/column.rs @@ -5,7 +5,7 @@ use crate::{ Style, Widget, }; -/// A container that places its contents vertically. +/// A container that distributes its contents vertically. /// /// A [`Column`] will try to fill the horizontal space of its container. /// diff --git a/src/widget/row.rs b/src/widget/row.rs index 6265739a..c4121157 100644 --- a/src/widget/row.rs +++ b/src/widget/row.rs @@ -5,7 +5,7 @@ use crate::{ Style, Widget, }; -/// A container that places its contents horizontally. +/// A container that distributes its contents horizontally. /// /// A [`Row`] will try to fill the horizontal space of its container. /// |