Skip to content

Commit

Permalink
Fixed a typo in the example code from the documentation. (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjovanc authored Jun 25, 2024
2 parents 72a917d + 3b9c122 commit 375d0cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/sqlite/insert.md
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
};
```

Expand Down

0 comments on commit 375d0cc

Please sign in to comment.