diff options
| author | Laurenz <laurmaedje@gmail.com> | 2019-10-31 20:26:21 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2019-10-31 20:26:21 +0100 |
| commit | 110e4b9cb9dcbe590d345d8883f0c5f111752f1c (patch) | |
| tree | cb78d7efef91296c2022a02102897b96a25e8619 /src/layout/flex.rs | |
| parent | 65ec3764e59353995a4feaa4214aea8c3e59bc3a (diff) | |
Spans for all parts of functions ✅
Diffstat (limited to 'src/layout/flex.rs')
| -rw-r--r-- | src/layout/flex.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/layout/flex.rs b/src/layout/flex.rs index b97b4239..da1e1d59 100644 --- a/src/layout/flex.rs +++ b/src/layout/flex.rs @@ -42,7 +42,7 @@ pub struct FlexContext { } macro_rules! reuse { - ($ctx:expr, $flex_spacing:expr) => { + ($ctx:expr, $flex_spacing:expr) => ( FlexContext { flex_spacing: $flex_spacing, alignment: $ctx.alignment, @@ -50,7 +50,7 @@ macro_rules! reuse { followup_spaces: $ctx.followup_spaces, shrink_to_fit: $ctx.shrink_to_fit, } - }; + ); } impl FlexContext { |
