From 3b9c122d431e8135aa36ab312bf52c48b1c643b4 Mon Sep 17 00:00:00 2001 From: TomasWild Date: Mon, 24 Jun 2024 19:30:49 -0300 Subject: [PATCH] Fix typo in insert data example --- docs/src/sqlite/insert.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/sqlite/insert.md b/docs/src/sqlite/insert.md index 2bb03015..42cedb5f 100644 --- a/docs/src/sqlite/insert.md +++ b/docs/src/sqlite/insert.md @@ -5,7 +5,7 @@ To insert data, we need to initialize our Posts struct that we created with valu ```rust let table_row: Posts = Posts { title: "A post title".to_string(), - description: "Some description for for a post".to_string(), + description: "Some description for a post".to_string(), }; ```