From a7be5062f42636ab0fed4801ca9a4048d12ea8e7 Mon Sep 17 00:00:00 2001 From: Max Inden Date: Mon, 23 Jan 2023 11:14:33 +0100 Subject: [PATCH] Return leftover brackets --- docs/coding-guidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/coding-guidelines.md b/docs/coding-guidelines.md index c48461b51f8..41b45647669 100644 --- a/docs/coding-guidelines.md +++ b/docs/coding-guidelines.md @@ -324,7 +324,7 @@ fn my_method() -> impl Future { } ``` -When accepting a **command** () that eventually results in a response through an event require that +When accepting a **command** that eventually results in a response through an event require that command to contain a unique ID, which is later on contained in the asynchronous response event. One such example is the `Swarm` accepting a `NetworkBehaviourAction::Dial` from the `NetworkBehaviour`.