Skip to content

Commit

Permalink
fix missing type in doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
geeklint committed Jun 28, 2023
1 parent 78e2e8e commit 14702a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
# use std::sync::Arc;
# use typeid_set::Set;
# unsafe {
let set: Arc<Set> = Arc::default();
let set: Arc<Set<i32>> = Arc::default();
set.try_insert(1);
set.try_insert(2);
set.try_insert(3);
Expand Down

0 comments on commit 14702a6

Please sign in to comment.