From 650c66b64a2dbdb982d99643ba005387efec4600 Mon Sep 17 00:00:00 2001 From: Cameron Dershem Date: Tue, 18 Jun 2019 02:25:55 -0400 Subject: [PATCH] Fixes typo in databases --- content/docs/databases.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/databases.md b/content/docs/databases.md index c4dcb11..e7df061 100644 --- a/content/docs/databases.md +++ b/content/docs/databases.md @@ -16,7 +16,7 @@ Let's create a simple database api that can insert a new user row into a SQLite We must define a sync actor and a connection that this actor will use. The same approach can be used for other databases. -{{< include-example example="databases" file="main.rs" section="actor" >}} +{{< include-example example="og_databases" file="main.rs" section="actor" >}} This is the definition of our actor. Now, we must define the *create user* message and response.