Fix typo in multi_iterator_scanner.rs (#34215)

targetting -> targeting
This commit is contained in:
Ikko Eltociear Ashimine 2023-11-25 14:12:57 +09:00 committed by GitHub
parent 4ee5078e5f
commit c6451e9441
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
//! Provides an iterator interface that create non-conflicting batches of elements to process.
//!
//! The problem that this structure is targetting is as following:
//! The problem that this structure is targeting is as following:
//! We have a slice of transactions we want to process in batches where transactions
//! in the same batch do not conflict with each other. This allows us process them in
//! parallel. The original slice is ordered by priority, and it is often the case