Skip to content

Commit 038446a

Browse files
committed
doc
1 parent 2ba3ce5 commit 038446a

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

+stdlib/is_absolute.m

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
%% IS_ABSOLUTE is path absolute?
2-
% on Windows, absolute paths must be at least 3 character long, starting with a root name followed by a slash
3-
% on non-Windows, absolute paths must start with a slash
1+
%% IS_ABSOLUTE is path absolute
2+
%
3+
% * Windows, absolute paths must be at least 3 character long, starting with a root name followed by a slash
4+
%
5+
% * non-Windows, absolute paths must start with a slash
46

57
function y = is_absolute(p)
68
arguments

+stdlib/is_symlink.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%% IS_SYMLINK is path a symbolic link
1+
%% IS_SYMLINK is path a symbolic link (Matlab optional MEX)
22

33
function ok = is_symlink(p)
44
arguments

0 commit comments

Comments
 (0)