Fix documentation for `Axis`
This commit is contained in:
parent
e8595218ef
commit
3a678561f2
|
@ -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)]
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
||||||
pub enum Align {
|
pub enum Align {
|
||||||
/// Align at the start of the cross axis.
|
/// Align at the start of the axis.
|
||||||
Start,
|
Start,
|
||||||
|
|
||||||
/// Align at the center of the cross axis.
|
/// Align at the center of the axis.
|
||||||
Center,
|
Center,
|
||||||
|
|
||||||
/// Align at the end of the cross axis.
|
/// Align at the end of the axis.
|
||||||
End,
|
End,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue