summaryrefslogtreecommitdiffstats
path: root/openpgp/src/regex
diff options
context:
space:
mode:
authorPeter Michael Green <plugwash@debian.org>2023-10-26 14:14:38 +0200
committerNeal H. Walfield <neal@pep.foundation>2023-10-26 14:14:38 +0200
commit7a8e12e89bccc5c40037969231a97d3d53983fcc (patch)
tree70ce351fe9f506e915e0d1cfeeaa98f614026e4f /openpgp/src/regex
parent082c48e65f2b56a4a03f87e68d7601f073feec43 (diff)
openpgp: Upgrade lalrpop
- Fixes #1060.
Diffstat (limited to 'openpgp/src/regex')
-rw-r--r--openpgp/src/regex/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpgp/src/regex/mod.rs b/openpgp/src/regex/mod.rs
index c42c1727..c2a6b93f 100644
--- a/openpgp/src/regex/mod.rs
+++ b/openpgp/src/regex/mod.rs
@@ -288,8 +288,8 @@ pub(crate) fn parse_error_downcast(e: ParseError<usize, Token, LexicalError>)
ParseError::User { error }
=> ParseError::User { error },
- ParseError::UnrecognizedEOF { location, expected }
- => ParseError::UnrecognizedEOF { location, expected },
+ ParseError::UnrecognizedEof { location, expected }
+ => ParseError::UnrecognizedEof { location, expected },
}
}