From 5b530f11b5a2597b6e3651f971205c20e8291e9a Mon Sep 17 00:00:00 2001 From: flip111 Date: Tue, 6 Mar 2018 01:46:16 +0100 Subject: [PATCH] Update qs_14.md fix missing semicolon --- guide/src/qs_14.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/src/qs_14.md b/guide/src/qs_14.md index 034832cd..72827e4e 100644 --- a/guide/src/qs_14.md +++ b/guide/src/qs_14.md @@ -36,7 +36,7 @@ We can send `CreateUser` message to `DbExecutor` actor, and as result we get ```rust,ignore impl Handler for DbExecutor { - type Result = Result + type Result = Result; fn handle(&mut self, msg: CreateUser, _: &mut Self::Context) -> Self::Result {