@@ -67,20 +67,20 @@ impl From<ProjectJson> for LinkedProject {
67
67
pub struct LensConfig {
68
68
pub run : bool ,
69
69
pub debug : bool ,
70
- pub impementations : bool ,
70
+ pub implementations : bool ,
71
71
}
72
72
73
73
impl Default for LensConfig {
74
74
fn default ( ) -> Self {
75
- Self { run : true , debug : true , impementations : true }
75
+ Self { run : true , debug : true , implementations : true }
76
76
}
77
77
}
78
78
79
79
impl LensConfig {
80
- pub const NO_LENS : LensConfig = Self { run : false , debug : false , impementations : false } ;
80
+ pub const NO_LENS : LensConfig = Self { run : false , debug : false , implementations : false } ;
81
81
82
82
pub fn any ( & self ) -> bool {
83
- self . impementations || self . runnable ( )
83
+ self . implementations || self . runnable ( )
84
84
}
85
85
86
86
pub fn none ( & self ) -> bool {
@@ -272,7 +272,7 @@ impl Config {
272
272
if lens_enabled {
273
273
set ( value, "/lens/run" , & mut self . lens . run ) ;
274
274
set ( value, "/lens/debug" , & mut self . lens . debug ) ;
275
- set ( value, "/lens/implementations" , & mut self . lens . impementations ) ;
275
+ set ( value, "/lens/implementations" , & mut self . lens . implementations ) ;
276
276
} else {
277
277
self . lens = LensConfig :: NO_LENS ;
278
278
}
0 commit comments