Skip to content

Commit

Permalink
Small typo in unittests
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Sicard committed Feb 2, 2016
1 parent 34940be commit 0db3842
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/d2sqlite3.d
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ public:
Appender!(string[]) app;
foreach (arg; args)
{
if (arg._type == SqliteType.TEXT)
if (arg.type == SqliteType.TEXT)
app.put(`"%s"`.format(arg));
else
app.put("%s".format(arg));
Expand All @@ -735,7 +735,7 @@ public:
Appender!(string[]) app;
foreach (arg; args)
{
if (arg._type == SqliteType.TEXT)
if (arg.type == SqliteType.TEXT)
app.put(`"%s"`.format(arg));
else
app.put("%s".format(arg));
Expand Down

0 comments on commit 0db3842

Please sign in to comment.