@@ -86,7 +86,7 @@ internal static string GetUniqueIdFromDiagnostic(Diagnostic diagnostic)
86
86
87
87
private readonly ConfigurationService _configurationService ;
88
88
89
- private readonly WorkspaceService _workplaceService ;
89
+ private readonly WorkspaceService _workspaceService ;
90
90
91
91
private readonly int _analysisDelayMillis ;
92
92
@@ -115,7 +115,7 @@ public AnalysisService(
115
115
_logger = loggerFactory . CreateLogger < AnalysisService > ( ) ;
116
116
_languageServer = languageServer ;
117
117
_configurationService = configurationService ;
118
- _workplaceService = workspaceService ;
118
+ _workspaceService = workspaceService ;
119
119
_analysisDelayMillis = 750 ;
120
120
_mostRecentCorrectionsByFile = new ConcurrentDictionary < ScriptFile , CorrectionTableEntry > ( ) ;
121
121
_analysisEngineLazy = new Lazy < PssaCmdletAnalysisEngine > ( InstantiateAnalysisEngine ) ;
@@ -334,7 +334,7 @@ private bool TryFindSettingsFile(out string settingsFilePath)
334
334
return false ;
335
335
}
336
336
337
- settingsFilePath = _workplaceService . ResolveWorkspacePath ( configuredPath ) ;
337
+ settingsFilePath = _workspaceService . ResolveWorkspacePath ( configuredPath ) ;
338
338
339
339
if ( settingsFilePath == null
340
340
|| ! File . Exists ( settingsFilePath ) )
@@ -349,7 +349,7 @@ private bool TryFindSettingsFile(out string settingsFilePath)
349
349
350
350
private void ClearOpenFileMarkers ( )
351
351
{
352
- foreach ( ScriptFile file in _workplaceService . GetOpenedFiles ( ) )
352
+ foreach ( ScriptFile file in _workspaceService . GetOpenedFiles ( ) )
353
353
{
354
354
ClearMarkers ( file ) ;
355
355
}
0 commit comments