From 5b72b1c62781146c6457bcd07f81b3806219c5aa Mon Sep 17 00:00:00 2001 From: Alessandro Coglio Date: Sat, 14 Oct 2023 23:48:29 -0700 Subject: [PATCH] Eliminate repeated `//`. --- circuit/types/group/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circuit/types/group/src/lib.rs b/circuit/types/group/src/lib.rs index 248857cbb8..ef732b47a4 100644 --- a/circuit/types/group/src/lib.rs +++ b/circuit/types/group/src/lib.rs @@ -148,7 +148,7 @@ impl Parser for Group { /// Parses a string into a group circuit. #[inline] fn parse(string: &str) -> ParserResult { - // // Parse the group from the string. + // Parse the group from the string. let (string, group) = console::Group::parse(string)?; // Parse the mode from the string. let (string, mode) = opt(pair(tag("."), Mode::parse))(string)?;