@@ -67,20 +67,20 @@ impl From<ProjectJson> for LinkedProject {
6767pub struct LensConfig {
6868 pub run : bool ,
6969 pub debug : bool ,
70- pub impementations : bool ,
70+ pub implementations : bool ,
7171}
7272
7373impl Default for LensConfig {
7474 fn default ( ) -> Self {
75- Self { run : true , debug : true , impementations : true }
75+ Self { run : true , debug : true , implementations : true }
7676 }
7777}
7878
7979impl 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 } ;
8181
8282 pub fn any ( & self ) -> bool {
83- self . impementations || self . runnable ( )
83+ self . implementations || self . runnable ( )
8484 }
8585
8686 pub fn none ( & self ) -> bool {
@@ -272,7 +272,7 @@ impl Config {
272272 if lens_enabled {
273273 set ( value, "/lens/run" , & mut self . lens . run ) ;
274274 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 ) ;
276276 } else {
277277 self . lens = LensConfig :: NO_LENS ;
278278 }
0 commit comments