Skip to content

Commit

Permalink
Eliminate repeated //.
Browse files Browse the repository at this point in the history
  • Loading branch information
acoglio committed Oct 15, 2023
1 parent 9053fa0 commit 5b72b1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion circuit/types/group/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ impl<E: Environment> Parser for Group<E> {
/// Parses a string into a group circuit.
#[inline]
fn parse(string: &str) -> ParserResult<Self> {
// // 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)?;
Expand Down

0 comments on commit 5b72b1c

Please sign in to comment.