Skip to content

Commit 2d500c6

Browse files
committed
chore: fix typo in TODO comment
1 parent 5d01f60 commit 2d500c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/interledger-settlement/src/api/message_service.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ where
7272
.send()
7373
.compat() // Wrap to a 0.1 future
7474
};
75-
// TODO: futures-retry is still not on futures 0.3. As a result, we wrap our action in a
76-
// 0.1 future, and then wrap the Retry future in a 0.3 future to use async/await.
7775

76+
// TODO: tokio-retry is still not on futures 0.3. As a result, we wrap our action in a
77+
// 0.1 future, and then wrap the Retry future in a 0.3 future to use async/await.
7878
let response = Retry::spawn(ExponentialBackoff::from_millis(10).take(10), action)
7979
.compat()
8080
.map_err(move |error| {

0 commit comments

Comments
 (0)