From 67f5a949a4056c74f44e3bf73d1cb30103692b68 Mon Sep 17 00:00:00 2001 From: flip111 Date: Tue, 6 Mar 2018 01:35:41 +0100 Subject: [PATCH] Update qs_14.md fix syntax error on use statement --- 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 e19d0ea9b..034832cd8 100644 --- a/guide/src/qs_14.md +++ b/guide/src/qs_14.md @@ -12,7 +12,7 @@ We have to define sync actor and connection that this actor will use. Same appro could be used for other databases. ```rust,ignore -use actix::prelude::*;* +use actix::prelude::*; struct DbExecutor(SqliteConnection);