comparison scripts/help/which.m @ 31551:fd29c7a50a78 stable

maint: use commas, semicolons consistently with Octave conventions. * makeValidName.m: Remove %!test and move BIST %!asserts to column 1. * base64decode.m, base64encode.m, which.m, logm.m, uniquetol.m, perms.m: Delete semicolon (';') at end of %!assert BIST. * lin2mu.m, interp2.m, interpn.m, lsqnonneg.m, pqpnonneg.m, uniquetol.m, betainc.m, normalize.m: Add semicolon (';') to end of assert statement within %!test BIST. * __memoize__.m, tar_is_bsd.m, publish.m: Add semicolon (';') to line with keyword "persistent". * stft.m: Use comma (',') after "case" keyword when code immediately follows. * gallery.m: Align commas used in case statements in massive switch block. Remove unnecessary parentheses around a numeric case argument. * ranks.m: Remove semicolon (';') from case statemnt argument.
author Rik <rik@octave.org>
date Sat, 26 Nov 2022 06:32:08 -0800
parents 2569c40924e7
children 597f3ee61a48
comparison
equal deleted inserted replaced
31549:ed7b17c7ddf3 31551:fd29c7a50a78
100 %! str = which ("ls"); 100 %! str = which ("ls");
101 %! assert (str(end-17:end), fullfile ("miscellaneous", "ls.m")); 101 %! assert (str(end-17:end), fullfile ("miscellaneous", "ls.m"));
102 %!test 102 %!test
103 %! str = which ("fftw"); 103 %! str = which ("fftw");
104 %! assert (str(end-7:end), "fftw.oct"); 104 %! assert (str(end-7:end), "fftw.oct");
105 %!assert <*49434> (which ("inputParser"), file_in_loadpath ("inputParser.m")); 105 %!assert <*49434> (which ("inputParser"), file_in_loadpath ("inputParser.m"))
106 %!test 106 %!test
107 %! x = 3; 107 %! x = 3;
108 %! str = which ("x"); 108 %! str = which ("x");
109 %! assert (str, "variable"); 109 %! assert (str, "variable");
110 110