Skip to content
This repository has been archived by the owner on Dec 5, 2017. It is now read-only.

Commit

Permalink
Fix formatting in example
Browse files Browse the repository at this point in the history
  • Loading branch information
norman committed Apr 2, 2012
1 parent 579576e commit 3b66dd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -45,8 +45,8 @@ rather than just a direct translation of libpq to Lua.
return result
end

emit("DROP TABLE IF EXISTS people")
emit("CREATE TABLE people(id SERIAL NOT NULL PRIMARY KEY, name VARCHAR(255))")
emit "DROP TABLE IF EXISTS people"
emit "CREATE TABLE people(id SERIAL NOT NULL PRIMARY KEY, name VARCHAR(255))"
emit "insert into people (name) values ('Joe Schmoe')"
emit "insert into people (name) values ('John Doe')"
emit "insert into people (name) values ('Jim Beam')"
Expand Down

0 comments on commit 3b66dd3

Please sign in to comment.