Skip to content

Commit

Permalink
Fix clippy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
pnehrer committed May 27, 2024
1 parent e11d79e commit b10c0a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/group.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pub fn end_group() {
}

/// Perform arbitrary logic in the context of a log line group.
pub fn group<F: FnOnce() -> ()>(title: &str, f: F) {
pub fn group<F: FnOnce()>(title: &str, f: F) {
start_group(title);
f();
end_group();
Expand Down

0 comments on commit b10c0a9

Please sign in to comment.