Skip to content

Commit

Permalink
fix tabulation in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
marctrem committed Jul 21, 2021
1 parent 150b1fa commit 849972b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,15 +144,15 @@ wr, err := conn.WritePrepared(
{
Query: "INSERT INTO secret_agents(id, name, secret) VALUES(?, ?, ?)",
Arguments: []interface{}{7, "James Bond", []byte{0x42}}
}
}
}
)
// alternatively
wr, err := conn.WriteOnePrepared(
&gorqlite.PreparedStatement{
Query: "INSERT INTO secret_agents(id, name, secret) VALUES(?, ?, ?)",
Arguments: []interface{}{7, "James Bond", []byte{0x42}},
},
},
)
```
## Important Notes
Expand Down

0 comments on commit 849972b

Please sign in to comment.