Skip to content

Commit 7137c98

Browse files
committed
doc formatting
1 parent 7c5477b commit 7137c98

28 files changed

+47
-46
lines changed

+stdlib/canonical.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
% * strict: if true, only return canonical path if it exists. If false, return normalized path if path does not exist.
1212
%%% Outputs
1313
% * c: canonical path, if determined
14+
% * b: backend used
1415

1516
function [c, b] = canonical(p, strict)
1617
arguments

+stdlib/create_symlink.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
%% CREATE_SYMLINK create symbolic link
22
%
3-
%% Inputs
3+
%%% inputs
44
% * target: path to link to
55
% * link: path to create link at
6-
%% Outputs
6+
%%% Outputs
77
% * ok: true if successful
88
% * b: backend used
99

+stdlib/device.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
%% DEVICE filesystem device index of path
22
%
3-
%% Inputs
3+
%%% Inputs
44
% * file: path to file
5-
%% Outputs
5+
%%% Outputs
66
% * i: device index
77
% * b: backend used
88

+stdlib/disk_available.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
%
33
% example: stdlib.disk_available('/')
44
%
5-
%% Inputs
5+
%%% inputs
66
% * file: path to check
7-
%% Outputs
7+
%%% Outputs
88
% * f: free disk space (bytes)
99
% * b: backend used
1010
%

+stdlib/disk_capacity.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
%
33
% example: stdlib.disk_capacity('/')
44
%
5-
%% Inputs
5+
%%% inputs
66
% * file: path to check
7-
%% Outputs
7+
%%% Outputs
88
% * f: total disk capacity (bytes)
99
% * b: backend used
1010

+stdlib/filesystem_type.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
%
33
% example outputs: NTFS, ext4, apfs, ...
44
%
5-
%% Inputs
5+
%%% inputs
66
% * file: path to check
77
% * backend: backend to use
8-
%% Outputs
8+
%%% Outputs
99
% * t: filesystem type
1010
% * b: backend used
1111

+stdlib/get_permissions.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
%
33
% output is char like 'rwxrwxr--'
44
%
5-
%% Inputs
5+
%%% inputs
66
% * file: path to check
77
% * backend: backend to use
8-
%% Outputs
8+
%%% Outputs
99
% * p: permissions string
1010
% * b: backend used
1111

+stdlib/get_shell.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%% GET_SHELL full path to currently running shell
22
%
3-
%% Outputs
3+
%%% Outputs
44
% * s: full path to currently running shell
55
% * b: backend used
66

+stdlib/get_uid.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%% GET_UID tell UID (numeric) of current user
22
%
3-
%% Outputs
3+
%%% Outputs
44
% * n: UID of current user
55
% * b: backend used
66

+stdlib/get_username.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%% GET_USERNAME tell username of current user
22
%
3-
%% Outputs
3+
%%% Outputs
44
% * n: username of current user
55
% * b: backend used
66

0 commit comments

Comments
 (0)