Skip to content

Commit a578c80

Browse files
committed
The atom module does not need to be public
1 parent d191aae commit a578c80

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

integration-tests/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
extern crate test;
1717

1818
use std::thread;
19-
use string_cache::atom::StaticAtomSet;
19+
use string_cache::StaticAtomSet;
2020

2121
include!(concat!(env!("OUT_DIR"), "/test_atom.rs"));
2222
pub type Atom = TestAtom;

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,4 @@
107107

108108
pub use crate::atom::{Atom, DefaultAtom, EmptyStaticAtomSet, PhfStrSet, StaticAtomSet};
109109

110-
pub mod atom;
110+
mod atom;

0 commit comments

Comments
 (0)