remove println

This commit is contained in:
Quentin 2023-06-18 21:18:33 +02:00
parent 92d657d380
commit 8f2c944ab8
Signed by: quentin
GPG key ID: E9602264D639FF68

View file

@ -114,7 +114,6 @@ fn strict_local_part(input: &str) -> IResult<&str, String> {
/// obs-local-part = word *(1*"." word)
/// ```
fn obs_local_part(input: &str) -> IResult<&str, String> {
println!("obsolete local part");
map(pair(
word,
fold_many0(