comparison scripts/miscellaneous/fileattrib.m @ 10821:693e22af08ae

Grammarcheck documentation of m-files Add newlines between @item fields for readability.
author Rik <octave@nomad.inbox5.com>
date Mon, 26 Jul 2010 21:25:36 -0700
parents 95c3e38098bf
children fd0a3ac60b0e
comparison
equal deleted inserted replaced
10820:c44c786f87ba 10821:693e22af08ae
24 ## structure with the following fields: 24 ## structure with the following fields:
25 ## 25 ##
26 ## @table @code 26 ## @table @code
27 ## @item Name 27 ## @item Name
28 ## Full name of @var{file}. 28 ## Full name of @var{file}.
29 ##
29 ## @item archive 30 ## @item archive
30 ## True if @var{file} is an archive (Windows). 31 ## True if @var{file} is an archive (Windows).
32 ##
31 ## @item system 33 ## @item system
32 ## True if @var{file} is a system file (Windows). 34 ## True if @var{file} is a system file (Windows).
35 ##
33 ## @item hidden 36 ## @item hidden
34 ## True if @var{file} is a hidden file (Windows). 37 ## True if @var{file} is a hidden file (Windows).
38 ##
35 ## @item directory 39 ## @item directory
36 ## True if @var{file} is a directory. 40 ## True if @var{file} is a directory.
41 ##
37 ## @item UserRead 42 ## @item UserRead
38 ## @itemx GroupRead 43 ## @itemx GroupRead
39 ## @itemx OtherRead 44 ## @itemx OtherRead
40 ## True if the user (group; other users) has read permission for 45 ## True if the user (group; other users) has read permission for
41 ## @var{file}. 46 ## @var{file}.
47 ##
42 ## @item UserWrite 48 ## @item UserWrite
43 ## @itemx GroupWrite 49 ## @itemx GroupWrite
44 ## @itemx OtherWrite 50 ## @itemx OtherWrite
45 ## True if the user (group; other users) has write permission for 51 ## True if the user (group; other users) has write permission for
46 ## @var{file}. 52 ## @var{file}.
53 ##
47 ## @item UserExecute 54 ## @item UserExecute
48 ## @itemx GroupExecute 55 ## @itemx GroupExecute
49 ## @itemx OtherExecute 56 ## @itemx OtherExecute
50 ## True if the user (group; other users) has execute permission for 57 ## True if the user (group; other users) has execute permission for
51 ## @var{file}. 58 ## @var{file}.