Skip to content

Commit 38bde11

Browse files
committed
Code cosmetics only: Fixed a oddly cased character in a case-insensitive keyword.
1 parent 9a1c865 commit 38bde11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SSYSqliter.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ + (NSMutableString*)queryDeleteFromTable:(NSString*)table
330330
+ (NSString*)queryInsertIntoTable:(NSString*)table
331331
columns:(NSArray*)columns
332332
values:(NSArray*)values {
333-
return [NSString stringWithFormat:@"InSERT INTO %@ (%@) VALUES %@",
333+
return [NSString stringWithFormat:@"INSERT INTO %@ (%@) VALUES %@",
334334
table,
335335
[columns componentsJoinedByString:@","],
336336
[values stringEsquotedSQLValue]] ;

0 commit comments

Comments
 (0)