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