summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Holland <rob@inversepath.com>2008-05-15 22:36:10 +0100
committerRob Holland <rob@inversepath.com>2008-05-15 22:36:10 +0100
commit13e12fbf29d89c74311f589a0402215941049e19 (patch)
treedd689a95e5664f1936f24a4293490f5a24f93d50
parent0bb712d6a5e95c3e2bd10445ae3805cb6107503b (diff)
downloadthird_party-sqlite3-ruby-13e12fbf29d89c74311f589a0402215941049e19.tar.gz
third_party-sqlite3-ruby-13e12fbf29d89c74311f589a0402215941049e19.tar.xz
third_party-sqlite3-ruby-13e12fbf29d89c74311f589a0402215941049e19.zip
small style fix
-rw-r--r--lib/sqlite3/pragmas.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlite3/pragmas.rb b/lib/sqlite3/pragmas.rb
index df40352..5c6177b 100644
--- a/lib/sqlite3/pragmas.rb
+++ b/lib/sqlite3/pragmas.rb
@@ -258,7 +258,7 @@ module SQLite3
# unquotes those values.
def tweak_default(hash)
case hash["dflt_value"]
- when /^null$/i then
+ when /^null$/i
hash["dflt_value"] = nil
when /^'(.*)'$/
hash["dflt_value"] = $1.gsub(/''/, "'")