Skip to content

Commit c2ba8d7

Browse files
committed
resolve: do not coerce
1 parent c2f825a commit c2ba8d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

+stdlib/resolve.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111

1212
function r = resolve(p, expand_tilde)
1313
arguments
14-
p (1,1) string
14+
p {mustBeTextScalar}
1515
expand_tilde (1,1) logical = true
1616
end
1717

1818

19-
r = stdlib.canonical(stdlib.absolute(p, "", expand_tilde), false);
19+
r = stdlib.canonical(stdlib.absolute(p, '', expand_tilde), false);
2020

2121
end
2222

0 commit comments

Comments
 (0)