Skip to content

Commit

Permalink
nargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
asterite committed Jan 13, 2025
1 parent 1abb5f8 commit 0f6bdc0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions noir_stdlib/src/collections/umap.nr
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,7 @@ impl<K, V, B> UHashMap<K, V, B> {
{
// docs:end:contains_key
/// Safety: unconstrained context
unsafe { self.get(key) }
.is_some()
unsafe { self.get(key) }.is_some()
}

// Returns true if the map contains no elements.
Expand Down

0 comments on commit 0f6bdc0

Please sign in to comment.