Skip to content

Commit 07d42c8

Browse files
author
Rik
committed
weboptions.m: Fix display of CertificateFilename.
* weboptions.m (disp): Remove useless "" from Timeout display. Add terminating sinqle quote (') to display of CertificateFilename.
1 parent ce61880 commit 07d42c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/web/weboptions.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ function disp (f)
331331
output = [" weboptions with properties:\n",...
332332
"\n CharacterEncoding: '", f.CharacterEncoding, "'",...
333333
"\n UserAgent: '", f.UserAgent, "'",...
334-
"\n Timeout: " , Timeout, "",...
334+
"\n Timeout: " , Timeout,...
335335
"\n Username: '", f.Username, "'",...
336336
"\n Password: '", Password, "'",...
337337
"\n KeyName: '", f.KeyName, "'",...
@@ -342,7 +342,7 @@ function disp (f)
342342
"\n RequestMethod: '", f.RequestMethod, "'",...
343343
"\n ArrayFormat: '", f.ArrayFormat, "'",...
344344
"\n HeaderFields: " , HeaderFields,...
345-
"\n CertificateFilename: '", f.CertificateFilename];
345+
"\n CertificateFilename: '", f.CertificateFilename "'"];
346346
disp (output);
347347

348348
endfunction

0 commit comments

Comments
 (0)