Skip to content

Commit 6e96920

Browse files
committed
fix: address clippy::doc_lazy_continuation warning in doc comments
1 parent fb412ac commit 6e96920

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ fn _get_ast(tokens: &[Token], pos: &mut usize) -> Result<Expression, ParseError>
236236
/// Attempts to parse the input `&str` as a lambda `Term` encoded in the given `Notation`.
237237
///
238238
/// - lambdas can be represented either with the greek letter (λ) or a backslash (\\ -
239-
/// less aesthetic, but only one byte in size)
239+
/// less aesthetic, but only one byte in size)
240240
/// - the identifiers in `Classic` notation are `String`s of alphabetic Unicode characters
241241
/// - `Classic` notation ignores whitespaces where unambiguous
242242
/// - the indices in the `DeBruijn` notation start with 1 and are hexadecimal digits

src/reduction.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use std::{cmp, fmt, mem};
1010
///
1111
/// - the `NOR`, `HNO`, `APP` and `HAP` orders reduce expressions to their normal form
1212
/// - the `APP` order will fail to fully reduce expressions containing terms without a normal form,
13-
/// e.g. the `Y` combinator (they will expand forever)
13+
/// e.g. the `Y` combinator (they will expand forever)
1414
/// - the `CBN` order reduces to weak head normal form
1515
/// - the `CBV` order reduces to weak normal form
1616
/// - the `HSP` order reduces to head normal form

0 commit comments

Comments
 (0)