Skip to content

Commit 2ad1621

Browse files
committed
Change docstring to make HTML render work
1 parent 3665d8c commit 2ad1621

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/parser/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11069,8 +11069,8 @@ impl<'a> Parser<'a> {
1106911069
})
1107011070
}
1107111071

11072-
/// Parsae ASC or DESC, returns Option<true> if ASC or Option<false> if DESC. If token is not
11073-
/// one of ASC or DESC, `None` is returned.
11072+
/// Parsae ASC or DESC, returns an Option with true if ASC, false of DESC or `None` if none of
11073+
/// them.
1107411074
pub fn parse_asc(&mut self) -> Option<bool> {
1107511075
if self.parse_keyword(Keyword::ASC) {
1107611076
Some(true)

0 commit comments

Comments
 (0)