From dd4b1126039ada43e5227dd92b5d3640d67e84c3 Mon Sep 17 00:00:00 2001 From: Joshua Barretto Date: Mon, 7 Feb 2022 18:26:09 +0000 Subject: [PATCH] Fixed docs --- src/recursive.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/recursive.rs b/src/recursive.rs index f88164db..2cc0b9e8 100644 --- a/src/recursive.rs +++ b/src/recursive.rs @@ -4,7 +4,7 @@ //! "What's so unpleasant about being drunk?" //! "You ask a glass of water.”* //! -//! The [`recursive`] function covers most cases, but sometimes it's necessary to manually control the declaration and +//! The [`recursive()`] function covers most cases, but sometimes it's necessary to manually control the declaration and //! definition of parsers more corefully, particularly for mutually-recursive parsers. In such cases, the functions on //! [`Recursive`] allow for this.