Skip to content

Commit f4c9aee

Browse files
committed
publish: show code for clarity
most functions are short
1 parent 2d1ea27 commit f4c9aee

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

+stdlib/has_java.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% HAS_JAVA detect if JVM is available
1+
%% HAS_JAVA detect if JVM is available
22

33
function ok = has_java()
44

+stdlib/samepath.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%% SAMEPATH is path the same
22
%
3-
% true if inputs resolve to same path
4-
% paths must exist
3+
% true if inputs resolve to same path.
4+
% Both paths must exist.
55
%
66
%%% Inputs
77
% * path1, path2: paths to compare

buildfile.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ function publishTask(~)
8383
for sub = pkg.m.'
8484
s = sub{1};
8585
[~, name] = fileparts(s);
86-
doc_fn = publish(pkg_name + "." + name, evalCode=false, outputDir=docs, showCode=false);
86+
doc_fn = publish(pkg_name + "." + name, evalCode=false, outputDir=docs);
8787
disp(doc_fn)
8888
% inject summary into Readme.md
8989
summary = split(string(help(pkg_name + "." + name)), newline);

0 commit comments

Comments
 (0)