diff options
| author | Laurenz <laurmaedje@gmail.com> | 2019-12-01 19:18:06 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2019-12-01 19:18:38 +0100 |
| commit | ace57c34206a13b4bc3885b944cc51e274f30b0f (patch) | |
| tree | 2f1e1e8e4ac5c3867492d5a59c49045058e16123 /src/library | |
| parent | 5782b82770f6923677942c3b4e2bf4f7258e47d8 (diff) | |
First half of stack update 🌓
Diffstat (limited to 'src/library')
| -rw-r--r-- | src/library/spacing.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/spacing.rs b/src/library/spacing.rs index 869a6227..47fe9fff 100644 --- a/src/library/spacing.rs +++ b/src/library/spacing.rs @@ -65,7 +65,7 @@ enum Spacing { // FIXME: h != primary and v != secondary. space_func!(HorizontalSpace, "📖 `h`: Adds horizontal whitespace.", - space => AddPrimarySpace(space)); + space => AddSpacing(space, SpacingKind::Hard, AxisKind::Primary)); space_func!(VerticalSpace, "📑 `v`: Adds vertical whitespace.", - space => AddSecondarySpace(space)); + space => AddSpacing(space, SpacingKind::Hard, AxisKind::Secondary)); |
