Skip to content

Commit e89887f

Browse files
committed
clarify comment
1 parent 116eb6a commit e89887f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/processor.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ impl Actor for Processor {
173173
actix::spawn(async move {
174174
// Immediately exists if the lock cannot be acquired.
175175
if let Ok(locked) = lock.try_lock() {
176-
// Lock acquired and will remain locked until the
177-
// handle goes out of scope.
176+
// Lock acquired and will remain locked until
177+
// `_l` goes out of scope.
178178
let _l = locked;
179179

180180
match local(db, escalation_window).await {

0 commit comments

Comments
 (0)