From 3a678561f2da92e089390ee79bd4f9efc2c1a8c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Sat, 23 Nov 2019 12:00:50 +0100 Subject: [PATCH] Fix documentation for `Axis` --- core/src/align.rs | 8 ++++---- 1 file 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, }