comparison scripts/audio/@audiorecorder/getplayer.m @ 19540:fdb8a62ef17a

fix docstring style in .m files * @audioplayer/__get_properties__.m, @audioplayer/audioplayer.m, @audioplayer/get.m, @audioplayer/isplaying.m, @audioplayer/pause.m, @audioplayer/play.m, @audioplayer/playblocking.m, @audioplayer/resume.m, @audioplayer/set.m, @audioplayer/stop.m, @audiorecorder/audiorecorder.m,@audiorecorder/get.m, @audiorecorder/getaudiodata.m, @audiorecorder/getplayer.m, @audiorecorder/isrecording.m, @audiorecorder/pause.m, @audiorecorder/play.m, @audiorecorder/record.m, @audiorecorder/recordblocking.m, @audiorecorder/resume.m, @audiorecorder/set.m, @audiorecorder/stop.m: Fix docstring style.
author John W. Eaton <jwe@octave.org>
date Wed, 31 Dec 2014 13:45:45 -0500
parents ce02743b6f2a
children dac3191a5301
comparison
equal deleted inserted replaced
19539:ce02743b6f2a 19540:fdb8a62ef17a
16 ## along with Octave; see the file COPYING. If not, see 16 ## along with Octave; see the file COPYING. If not, see
17 ## <http://www.gnu.org/licenses/>. 17 ## <http://www.gnu.org/licenses/>.
18 18
19 ## -*- texinfo -*- 19 ## -*- texinfo -*-
20 ## @deftypefn {Function File} {@var{player} =} getplayer (@var{recorder}) 20 ## @deftypefn {Function File} {@var{player} =} getplayer (@var{recorder})
21 ## Returns an audioplayer object with data recorded by the recorder. 21 ## Return an audioplayer object with data recorded by the audiorecorder
22 ## object @var{recorder}.
22 ## @end deftypefn 23 ## @end deftypefn
23 24
24 function player = getplayer (varargin) 25 function player = getplayer (varargin)
25 if (nargin < 1 || nargin > 2) 26 if (nargin < 1 || nargin > 2)
26 print_usage (); 27 print_usage ();