From 2e85a35becb63873b2dba06bbbc717cce7ad55d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20S=C3=B8rensen?= <47296141+Equilibris@users.noreply.github.com> Date: Wed, 21 Jun 2023 16:57:09 +0200 Subject: [PATCH] fix incorrect syntax for type-paths --- src/paths.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/paths.md b/src/paths.md index cb6b24aa0..9efbda701 100644 --- a/src/paths.md +++ b/src/paths.md @@ -125,7 +125,7 @@ S::f(); // Calls the inherent impl. >    `::`? _TypePathSegment_ (`::` _TypePathSegment_)\* > > _TypePathSegment_ :\ ->    _PathIdentSegment_ `::`? ([_GenericArgs_] | _TypePathFn_)? +>    _PathIdentSegment_ (`::`? ([_GenericArgs_] | _TypePathFn_))? > > _TypePathFn_ :\ > `(` _TypePathFnInputs_? `)` (`->` [_Type_])?