Skip to content

Commit 569cc1e

Browse files
committed
Resolve semicolon_if_nothing_returned pedantic clippy lint from PR 1127
1 parent eb0330a commit 569cc1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/map.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ impl Eq for Map<String, Value> {}
374374
impl Hash for Map<String, Value> {
375375
#[inline]
376376
fn hash<H: core::hash::Hasher>(&self, state: &mut H) {
377-
self.map.hash(state)
377+
self.map.hash(state);
378378
}
379379
}
380380
#[cfg(feature = "preserve_order")]

0 commit comments

Comments
 (0)