Skip to content

Commit b21da60

Browse files
committed
chore: type
1 parent 5381464 commit b21da60

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
File renamed without changes.

src/feature_probe.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use tracing::trace;
88
use crate::user::FPUser;
99
use crate::{
1010
config::Config,
11-
evalutate::{EvalDetail, Repository},
11+
evaluate::{EvalDetail, Repository},
1212
};
1313
use crate::{sync::Synchronizer, FPConfig};
1414
use crate::{FPDetail, SdkAuthorization, Toggle};
@@ -332,7 +332,7 @@ mod tests {
332332
let mut path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
333333
path.push(file);
334334
let json_str = fs::read_to_string(path).unwrap();
335-
let repo = crate::evalutate::load_json(&json_str);
335+
let repo = crate::evaluate::load_json(&json_str);
336336
assert!(repo.is_ok(), "err is {:?}", repo);
337337
repo
338338
}

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
mod config;
2-
mod evalutate;
2+
mod evaluate;
33
mod feature_probe;
44
mod sync;
55
mod user;
66

77
pub use crate::config::FPConfig;
8-
pub use crate::evalutate::{load_json, Repository, Segment, Toggle};
8+
pub use crate::evaluate::{load_json, Repository, Segment, Toggle};
99
pub use crate::feature_probe::FeatureProbe;
1010
pub use crate::user::FPUser;
1111
use headers::{Error, Header, HeaderName, HeaderValue};

0 commit comments

Comments
 (0)