Fix UI node docs (#8287)

# Objective

- Fix some (probably) incorrect docs.
This commit is contained in:
Gajo Petrovic 2023-04-02 09:02:01 +09:00 committed by GitHub
parent d193d7f537
commit 9079f6d976
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -419,7 +419,7 @@ pub enum AlignItems {
/// then they are packed towards the end of the axis.
FlexStart,
/// Items are packed towards the end of the axis, unless the flex direction is reversed;
/// then they are packed towards the end of the axis.
/// then they are packed towards the start of the axis.
FlexEnd,
/// Items are aligned at the center.
Center,
@ -453,8 +453,8 @@ pub enum AlignSelf {
/// This item will be aligned with the start of the axis, unless the flex direction is reversed;
/// then it will be aligned with the end of the axis.
FlexStart,
/// This item will be aligned with the start of the axis, unless the flex direction is reversed;
/// then it will be aligned with the end of the axis.
/// This item will be aligned with the end of the axis, unless the flex direction is reversed;
/// then it will be aligned with the start of the axis.
FlexEnd,
/// This item will be aligned at the center.
Center,