Skip to content

Commit 1dd9c55

Browse files
Merge pull request #224 from guzman-raphael/fix-update-date-null
Fix linting2
2 parents 74198dc + 1916bf0 commit 1dd9c55

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

+dj/Relvar.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -355,13 +355,13 @@ function update(self, attrname, value)
355355
switch true
356356
case isNull
357357
assert(header.attributes(ix).isnullable, ...
358-
'attribute `%s` is not nullable.', attrname)
358+
'attribute `%s` is not nullable.', attrname);
359359
valueStr = 'NULL';
360360
value = {};
361361
case header.attributes(ix).isString
362-
assert(dj.lib.isString(value), 'Value must be a string')
363-
valueStr = '"{S}"';
364-
value = {char(value)};
362+
assert(dj.lib.isString(value), 'Value must be a string');
363+
valueStr = '"{S}"';
364+
value = {char(value)};
365365
case header.attributes(ix).isBlob
366366
valueStr = '"{M}"';
367367
value = {value};

0 commit comments

Comments
 (0)