From 747d13d85a8bcf7e00b0319b2ac26872140de116 Mon Sep 17 00:00:00 2001 From: Alexey Romanov Date: Thu, 28 Apr 2011 10:03:23 +0400 Subject: [PATCH] Formatting fixed --- src/sqlite3_lib.erl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/sqlite3_lib.erl b/src/sqlite3_lib.erl index 755db92..2ab6aa3 100644 --- a/src/sqlite3_lib.erl +++ b/src/sqlite3_lib.erl @@ -378,12 +378,12 @@ column_sql_for_create_table({Name, Type, Constraints}) -> -spec pk_constraint_sql(any()) -> iolist(). pk_constraint_sql(Constraint) -> - case Constraint of - desc -> "DESC"; - asc -> "ASC"; - autoincrement -> "AUTOINCREMENT"; - L -> lists:map(fun pk_constraint_sql/1, L) - end. + case Constraint of + desc -> "DESC"; + asc -> "ASC"; + autoincrement -> "AUTOINCREMENT"; + L -> lists:map(fun pk_constraint_sql/1, L) + end. -spec constraint_sql(any()) -> iolist(). constraint_sql(Constraint) ->