Skip to content

Commit b2c5db3

Browse files
committed
Tweak comments.
1 parent 23b11f3 commit b2c5db3

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

anymatrix.m

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
function varargout = anymatrix(varargin)
22
%ANYMATRIX Interface for accessing the Anymatrix collections.
3-
% ANYMATRIX is a user interface for the Anymatrix matrix collections.
3+
% ANYMATRIX is a user interface for the Anymatrix matrix collection.
44
% It provides commands to list matrices, groups and sets, search for
55
% matrices by properties, and obtain the matrices by their IDs.
66
%
7-
% The interface comes with a built-in matrix collection, but users can
8-
% develop their own collections either by creating them from scratch or
9-
% extending the built-in collection.
7+
% The interface comes with built-in groups of matrices, but users can
8+
% develop their own groups and make them available to other users.
109
%
1110
% The built-in collection contains 146 matrices organized in 7 groups:
1211
%
@@ -174,7 +173,7 @@
174173
command = varargin{2};
175174
arg = varargin{1};
176175
end
177-
% Allow user's use hyphens instead of underscores, but replace here.
176+
% Allow use of hyphens instead of underscores, but replace here.
178177
if ischar(arg) && ~any(startsWith({'properties', 'lookfor', ...
179178
'sets'}, command))
180179
arg = strrep(lower(arg), '-', '_');

0 commit comments

Comments
 (0)