summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/src/align.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/src/align.rs b/core/src/align.rs
index 05bd5e63..8a59afa1 100644
--- a/core/src/align.rs
+++ b/core/src/align.rs
@@ -1,13 +1,13 @@
-/// Alignment on an unspecified axis of a container.
+/// Alignment on an axis of a container.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum Align {
- /// Align at the start of the cross axis.
+ /// Align at the start of the axis.
Start,
- /// Align at the center of the cross axis.
+ /// Align at the center of the axis.
Center,
- /// Align at the end of the cross axis.
+ /// Align at the end of the axis.
End,
}