Skip to content

Commit 4816291

Browse files
committed
fix clippy again
1 parent 558f686 commit 4816291

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
@@ -234,7 +234,7 @@ fn _get_ast(tokens: &[Token], pos: &mut usize) -> Result<Expression, ParseError>
234234
/// Attempts to parse the input `&str` as a lambda `Term` encoded in the given `Notation`.
235235
///
236236
/// - lambdas can be represented either with the greek letter (λ) or a backslash (\\ -
237-
/// less aesthetic, but only one byte in size)
237+
/// less aesthetic, but only one byte in size)
238238
/// - the identifiers in `Classic` notation are `String`s of alphabetic Unicode characters
239239
/// - `Classic` notation ignores whitespaces where unambiguous
240240
/// - 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
@@ -12,7 +12,7 @@ use core::{cmp, fmt, mem};
1212
///
1313
/// - the `NOR`, `HNO`, `APP` and `HAP` orders reduce expressions to their normal form
1414
/// - the `APP` order will fail to fully reduce expressions containing terms without a normal form,
15-
/// e.g. the `Y` combinator (they will expand forever)
15+
/// e.g. the `Y` combinator (they will expand forever)
1616
/// - the `CBN` order reduces to weak head normal form
1717
/// - the `CBV` order reduces to weak normal form
1818
/// - the `HSP` order reduces to head normal form

0 commit comments

Comments
 (0)