From 630441de5652ca69795bddb38a6d9c1d8eb3d04c Mon Sep 17 00:00:00 2001 From: 0xAtticus <142542714+0xAtticus@users.noreply.github.com> Date: Sun, 28 Jul 2024 23:30:55 +0200 Subject: [PATCH] Fix a small typo in sec-5-arbiter.md (#416) --- docs/actix/sec-5-arbiter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/actix/sec-5-arbiter.md b/docs/actix/sec-5-arbiter.md index 13fa2b6..b84b4e8 100644 --- a/docs/actix/sec-5-arbiter.md +++ b/docs/actix/sec-5-arbiter.md @@ -85,7 +85,7 @@ fn main() { Ok(res) => { // `res` is now the `usize` returned from `SumActor` as a response to `Value(6, 7)` // Once the future is complete, send the successful response (`usize`) - // to the `DisplayActor` wrapped in a `Display + // to the `DisplayActor` wrapped in a `Display` dis_addr.send(Display(res)).await; } Err(e) => {