aboutsummaryrefslogtreecommitdiffhomepage
path: root/pingora-load-balancing/src/selection/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'pingora-load-balancing/src/selection/mod.rs')
-rw-r--r--pingora-load-balancing/src/selection/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/pingora-load-balancing/src/selection/mod.rs b/pingora-load-balancing/src/selection/mod.rs
index 6320a8e..d7b7e9b 100644
--- a/pingora-load-balancing/src/selection/mod.rs
+++ b/pingora-load-balancing/src/selection/mod.rs
@@ -32,7 +32,7 @@ pub trait BackendSelection {
/// Select backends for a given key.
///
/// An [BackendIter] should be returned. The first item in the iter is the first
- /// choice backend. The user should continue iterate over it if the first backend
+ /// choice backend. The user should continue to iterate over it if the first backend
/// cannot be used due to its health or other reasons.
fn iter(self: &Arc<Self>, key: &[u8]) -> Self::Iter
where