diff --git a/README.md b/README.md index f8afbb2..d83eeda 100644 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ wr, err := conn.WritePrepared( { Query: "INSERT INTO secret_agents(id, name, secret) VALUES(?, ?, ?)", Arguments: []interface{}{7, "James Bond", []byte{0x42}} - } + } } ) // alternatively @@ -152,7 +152,7 @@ wr, err := conn.WriteOnePrepared( &gorqlite.PreparedStatement{ Query: "INSERT INTO secret_agents(id, name, secret) VALUES(?, ?, ?)", Arguments: []interface{}{7, "James Bond", []byte{0x42}}, - }, + }, ) ``` ## Important Notes