From f08b26316f18bbc1b0ab041dcdc5efa0e1491e53 Mon Sep 17 00:00:00 2001 From: timofey Date: Sat, 29 Jul 2023 10:33:11 +0000 Subject: [PATCH] `ex_points_typed` reformat --- src/rstd/collections/stack.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rstd/collections/stack.rs b/src/rstd/collections/stack.rs index b8a62be..63cfdd6 100644 --- a/src/rstd/collections/stack.rs +++ b/src/rstd/collections/stack.rs @@ -59,7 +59,8 @@ where mentionable: &Stack<'a, Ctx, Self>, points: &mut impl PointsVisitor<'a, Ctx>, ) { - < as WithParseMode>::WithMode as ExternalPointsProxy<'a, Ctx, _>>::exp_points_typed(mentionable, points) + type Wm<'a, Ctx, A> = as WithParseMode>::WithMode; + as ExternalPointsProxy<'a, Ctx, _>>::exp_points_typed(mentionable, points) } }