From 6b20d5f9bbc5567e81964812c9e7823a7f7bdc52 Mon Sep 17 00:00:00 2001 From: timofey Date: Sat, 1 Jul 2023 00:56:47 +0000 Subject: [PATCH] `ParseError` docs --- src/rcore.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rcore.rs b/src/rcore.rs index 9efa3f3..1f0ef02 100644 --- a/src/rcore.rs +++ b/src/rcore.rs @@ -86,6 +86,7 @@ pub trait Factory<'a, Ctx: Context<'a>>: 'a + Send + Sync + Clone { /// [`Mentionable`] associated with the [`Factory`]. Mostly useful for `type` definitions. pub type Mtbl<'a, Ctx, F> = >::Mtbl; +/// [`Factory::ParseError`]. Mostly useful for `type` definitions. pub type ParseError<'a, Ctx, F> = >::ParseError; pub type ParseErrorA<'a, Ctx, A> = ParseError<'a, Ctx, Fctr<'a, Ctx, A>>;