Skip to content

Commit ef1b562

Browse files
committed
Update arrow.internal.test.display.makeLinkString to react to how MATLAB
display formatting changes
1 parent ef49b17 commit ef1b562

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: matlab/src/matlab/+arrow/+internal/+test/+display/makeLinkString.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
end
2727

2828
if opts.BoldFont
29-
link = compose("<a href=""matlab:helpPopup %s""" + ...
29+
link = compose("<a href=""matlab:helpPopup('%s')""" + ...
3030
" style=""font-weight:bold"">%s</a>", ...
3131
opts.FullClassName, opts.ClassName);
3232
else
33-
link = compose("<a href=""matlab:helpPopup %s"">%s</a>", ...
33+
link = compose("<a href=""matlab:helpPopup('%s')"">%s</a>", ...
3434
opts.FullClassName, opts.ClassName);
3535
end
3636
end

0 commit comments

Comments
 (0)