Skip to content

Commit

Permalink
Minor README fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmryan committed May 23, 2017
1 parent 07e0362 commit 864d3ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
f# FMDB v2.7
# FMDB v2.7

This is an Objective-C wrapper around SQLite: http://sqlite.org/

Expand Down Expand Up @@ -284,7 +284,7 @@ In Swift, you would use `executeUpdate(values:)`, which not only is a concise Sw
do {
let identifier = 42
let name = "Liam O'Flaherty (\"the famous Irish author\")"
let date = NSDate()
let date = Date()
let comment: String? = nil
try db.executeUpdate("INSERT INTO authors (identifier, name, date, comment) VALUES (?, ?, ?, ?)", values: [identifier, name, date, comment ?? NSNull()])
Expand Down

0 comments on commit 864d3ab

Please sign in to comment.