Skip to content

Commit 1f31ec4

Browse files
committed
fixed typos
1 parent 46beb7e commit 1f31ec4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Rubberduck.Parsing/VBA/ParseCoordinator.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ private void ParseAll(object requestor, CancellationTokenSource token)
363363

364364
var components = State.Projects.SelectMany(project => project.VBComponents).ToList();
365365

366-
var componentsRemoved = ClearStateCashForRemovedComponents(components);
366+
var componentsRemoved = ClearStateCacheForRemovedComponents(components);
367367

368368
// invalidation cleanup should go into ParseAsync?
369369
CleanUpComponentAttributes(components);
@@ -385,10 +385,10 @@ private void ParseAll(object requestor, CancellationTokenSource token)
385385
}
386386

387387
/// <summary>
388-
/// Clears state cach for removed components.
388+
/// Clears state cache for removed components.
389389
/// Returns whether components have been removed.
390390
/// </summary>
391-
private bool ClearStateCashForRemovedComponents(List<IVBComponent> components)
391+
private bool ClearStateCacheForRemovedComponents(List<IVBComponent> components)
392392
{
393393
var removedModuledecalrations = RemovedModuleDeclarations(components);
394394
var componentRemoved = removedModuledecalrations.Any();

0 commit comments

Comments
 (0)