summaryrefslogtreecommitdiffstats
path: root/native
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-05-02 20:16:00 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-05-02 20:16:00 +0200
commite7d595c7de3854e165fd68f05ab2292cae69dbc4 (patch)
tree4d91f993a65f7547aa9a777760af25562dbfb9dd /native
parent68e9eb0a9b45b86713ce5d0e9c2273a60f2cc11c (diff)
downloadiced-e7d595c7de3854e165fd68f05ab2292cae69dbc4.tar.gz
iced-e7d595c7de3854e165fd68f05ab2292cae69dbc4.tar.bz2
iced-e7d595c7de3854e165fd68f05ab2292cae69dbc4.zip
Write documentation for `iced_pure`
Diffstat (limited to 'native')
-rw-r--r--native/src/widget/column.rs2
-rw-r--r--native/src/widget/row.rs2
-rw-r--r--native/src/widget/tooltip.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/native/src/widget/column.rs b/native/src/widget/column.rs
index f161d1f2..268218b1 100644
--- a/native/src/widget/column.rs
+++ b/native/src/widget/column.rs
@@ -48,7 +48,7 @@ impl<'a, Message, Renderer> Column<'a, Message, Renderer> {
/// Sets the vertical spacing _between_ elements.
///
- /// Custom margins per element do not exist in Iced. You should use this
+ /// Custom margins per element do not exist in iced. You should use this
/// method instead! While less flexible, it helps you keep spacing between
/// elements consistent.
pub fn spacing(mut self, units: u16) -> Self {
diff --git a/native/src/widget/row.rs b/native/src/widget/row.rs
index e34befb2..7a7c70c6 100644
--- a/native/src/widget/row.rs
+++ b/native/src/widget/row.rs
@@ -48,7 +48,7 @@ impl<'a, Message, Renderer> Row<'a, Message, Renderer> {
/// Sets the horizontal spacing _between_ elements.
///
- /// Custom margins per element do not exist in Iced. You should use this
+ /// Custom margins per element do not exist in iced. You should use this
/// method instead! While less flexible, it helps you keep spacing between
/// elements consistent.
pub fn spacing(mut self, units: u16) -> Self {
diff --git a/native/src/widget/tooltip.rs b/native/src/widget/tooltip.rs
index e178c8b2..c929395f 100644
--- a/native/src/widget/tooltip.rs
+++ b/native/src/widget/tooltip.rs
@@ -29,7 +29,7 @@ where
/// The default padding of a [`Tooltip`] drawn by this renderer.
const DEFAULT_PADDING: u16 = 5;
- /// Creates an empty [`Tooltip`].
+ /// Creates a new [`Tooltip`].
///
/// [`Tooltip`]: struct.Tooltip.html
pub fn new(