diff options
author | CYBAI <cyb.ai.815@gmail.com> | 2018-11-11 14:26:06 +0800 |
---|---|---|
committer | CYBAI <cyb.ai.815@gmail.com> | 2018-11-11 14:26:06 +0800 |
commit | db008b939380b6edfa54fd678d0e67797672ac65 (patch) | |
tree | 2ee559a3198697b6bfad2eb1bbaf0e3ff8227f72 /components | |
parent | 19b4f35de1ec593ed0ddf11dc0e41ef8f191d496 (diff) | |
download | servo-db008b939380b6edfa54fd678d0e67797672ac65.tar.gz servo-db008b939380b6edfa54fd678d0e67797672ac65.zip |
Fix wrong spec link
Diffstat (limited to 'components')
-rw-r--r-- | components/style/values/specified/align.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/style/values/specified/align.rs b/components/style/values/specified/align.rs index 8ab097c45bf..ddec5d54618 100644 --- a/components/style/values/specified/align.rs +++ b/components/style/values/specified/align.rs @@ -287,7 +287,7 @@ impl From<AlignContent> for u16 { /// Value for the `justify-content` property. /// -/// <https://drafts.csswg.org/css-align/#propdef-align-content> +/// <https://drafts.csswg.org/css-align/#propdef-justify-content> #[derive(Clone, Copy, Debug, Eq, MallocSizeOf, PartialEq, ToComputedValue, ToCss)] pub struct JustifyContent(pub ContentDistribution); @@ -461,7 +461,7 @@ impl From<JustifySelf> for u8 { /// Value of the `align-items` property /// -/// <https://drafts.csswg.org/css-align/#self-alignment> +/// <https://drafts.csswg.org/css-align/#propdef-align-items> #[derive(Clone, Copy, Debug, Eq, MallocSizeOf, PartialEq, ToComputedValue, ToCss)] pub struct AlignItems(pub AlignFlags); |