aboutsummaryrefslogtreecommitdiff
path: root/src/transform.rs
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2021-11-25 08:33:06 +0100
committerMartin Fischer <martin@push-f.com>2021-11-25 08:40:30 +0100
commit21583e526c8045c60026b1fe8ec9510734d1764d (patch)
tree53763ef8ff9bbc6f1288efb9c7a3ecb58afd15cc /src/transform.rs
parent73b1ca899858b7079bec54a6e4f29941cbb8d0bd (diff)
rename parse_trait_sig module to trait_sig
Diffstat (limited to 'src/transform.rs')
-rw-r--r--src/transform.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/transform.rs b/src/transform.rs
index 594d383..831fb14 100644
--- a/src/transform.rs
+++ b/src/transform.rs
@@ -10,9 +10,9 @@ use syn::{
use crate::{
filter_map_assoc_paths, match_assoc_type,
parse_assoc_type::{BoxType, DestType},
- parse_trait_sig::{MethodError, TypeTransform},
path_is_assoc_type,
syn_utils::{iter_path, iter_type, type_arguments_mut},
+ trait_sig::{MethodError, TypeTransform},
};
#[derive(Default)]