Skip to content

Commit 1916bf0

Browse files
Fix linting2.
1 parent c1e3af3 commit 1916bf0

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)