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)]
|
||||
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,
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue