view checkAllCode.m @ 1200:d9da4c1cdaa0 feature/poroelastic

Fix spelling mistake in comments.
author Martin Almquist <malmquist@stanford.edu>
date Thu, 22 Aug 2019 11:55:35 -0700
parents cd571e8ec1fd
children
line wrap: on
line source

% Run matlabs checkcode on all files in current folder including subfolders
function checkAllCode(d)
    default_arg('d','')
    files = findMfiles(d);
    checkcode(files)
end