Skip to content

Commit 95536ea

Browse files
committed
docs: move expression() docs to text parsing
Resolves: * winnow-rs#804 (comment)
1 parent 9ffa80d commit 95536ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/combinator/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,6 @@
8989
//! - [`fail`]: Inversion of [`empty`]. Always fails.
9090
//! - [`Parser::by_ref`]: Allow moving `&mut impl Parser` into other parsers
9191
//!
92-
//! - [`expression()`]: Parse an operator precedence expression with Pratt parsing
93-
//!
9492
//! ## Text parsing
9593
//!
9694
//! - [`any`][crate::token::any]: Matches one token
@@ -117,6 +115,8 @@
117115
//! - [`take_escaped`][crate::ascii::take_escaped]: Recognize the input slice with escaped characters
118116
//! - [`escaped_transform`][crate::ascii::escaped_transform]: Parse escaped characters, unescaping them
119117
//!
118+
//! - [`expression()`]: Parse an operator precedence expression with Pratt parsing
119+
//!
120120
//! ### Character test functions
121121
//!
122122
//! Use these functions with a combinator like `take_while`:

0 commit comments

Comments
 (0)