1
0
mirror of https://github.com/actix/actix-website synced 2024-11-23 16:31:08 +01:00

Fix a small typo in sec-5-arbiter.md (#416)

This commit is contained in:
0xAtticus 2024-07-28 23:30:55 +02:00 committed by GitHub
parent 71817c4bfb
commit 630441de56
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -85,7 +85,7 @@ fn main() {
Ok(res) => { Ok(res) => {
// `res` is now the `usize` returned from `SumActor` as a response to `Value(6, 7)` // `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`) // 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; dis_addr.send(Display(res)).await;
} }
Err(e) => { Err(e) => {