Fix documentation for `Axis`

This commit is contained in:
Héctor Ramón Jiménez 2019-11-23 12:00:50 +01:00
parent e8595218ef
commit 3a678561f2
1 changed files with 4 additions and 4 deletions

View File

@ -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,
} }