From c88d70dd85611ac8bee19555ffc7e5a0e63bfb5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dr=2E=20Patrick=20Urbanke=20=28=E5=8A=89=E8=87=AA=E6=88=90?= =?UTF-8?q?=29?= Date: Wed, 21 May 2025 22:30:03 +0200 Subject: [PATCH] Fixed typo in insert.md (#4) --- docs/insert.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/insert.md b/docs/insert.md index 9972335..ff78fd4 100644 --- a/docs/insert.md +++ b/docs/insert.md @@ -65,7 +65,8 @@ Insert data using a reference wrapper to avoid copying: const auto people = std::vector(/* ... */); sqlgen::sqlite::connect("database.db") .and_then(sqlgen::insert(std::ref(people))) - .value();``` + .value(); +``` ## Example: Full Transaction Usage