runtime: fix a typo in comment of MAX_LIFO_POLLS_PER_TICK (#7520)

This commit is contained in:
mxsm 2025-08-09 22:29:43 +08:00 committed by GitHub
parent 987675e843
commit 46f7d87962
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -230,7 +230,7 @@ type Notified = task::Notified<Arc<Handle>>;
/// Value picked out of thin-air. Running the LIFO slot a handful of times
/// seems sufficient to benefit from locality. More than 3 times probably is
/// overweighing. The value can be tuned in the future with data that shows
/// over-weighting. The value can be tuned in the future with data that shows
/// improvements.
const MAX_LIFO_POLLS_PER_TICK: usize = 3;