Skip to content

Commit

Permalink
fixes typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Shazwazza committed Jul 15, 2015
1 parent 0d78ba4 commit 30be617
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Projects/Examine/LuceneEngine/Providers/LuceneIndexer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ public override void RebuildIndex()
{
if (_cancellationTokenSource.IsCancellationRequested)
{
OnIndexingError(new IndexingErrorEventArgs("Cannot rebuild the index, indexing cancelation has been requested", -1, null));
OnIndexingError(new IndexingErrorEventArgs("Cannot rebuild the index, indexing cancellation has been requested", -1, null));
return;
}

Expand Down Expand Up @@ -790,7 +790,7 @@ public void OptimizeIndex()
{
if (_cancellationTokenSource.IsCancellationRequested)
{
OnIndexingError(new IndexingErrorEventArgs("Cannot optimize index, index cancelation has been requested", -1, null), true);
OnIndexingError(new IndexingErrorEventArgs("Cannot optimize index, index cancellation has been requested", -1, null), true);
return;
}

Expand Down

0 comments on commit 30be617

Please sign in to comment.