rename the ComputingTheChanges to ComputingDocumentChanges in the edit document progress

This commit is contained in:
Tamo 2024-12-11 18:09:54 +01:00
parent 5d682b4700
commit ad4dc70720
No known key found for this signature in database
GPG Key ID: 20CD8020AFA88D69
2 changed files with 2 additions and 2 deletions

View File

@ -1509,7 +1509,7 @@ impl IndexScheduler {
}; };
let candidates_count = candidates.len(); let candidates_count = candidates.len();
progress.update_progress(DocumentEditionProgress::ComputingTheChanges); progress.update_progress(DocumentEditionProgress::ComputingDocumentChanges);
let indexer = UpdateByFunction::new(candidates, context.clone(), code.clone()); let indexer = UpdateByFunction::new(candidates, context.clone(), code.clone());
let document_changes = pool let document_changes = pool
.install(|| { .install(|| {

View File

@ -147,7 +147,7 @@ make_enum_progress! {
make_enum_progress! { make_enum_progress! {
pub enum DocumentEditionProgress { pub enum DocumentEditionProgress {
RetrievingConfig, RetrievingConfig,
ComputingTheChanges, ComputingDocumentChanges,
Indexing, Indexing,
} }
} }