Skip to content

Commit bce7a30

Browse files
committed
Fix comments
1 parent 754afd0 commit bce7a30

File tree

5 files changed

+34
-34
lines changed

5 files changed

+34
-34
lines changed

src/Files.Core/Data/Enums/ColumnsViewSizeKind.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,32 @@
44
namespace Files.Core.Data.Enums
55
{
66
/// <summary>
7-
/// Defines constant that specifies the icon/height size in Columns layout.
7+
/// Defines constants that specify the size in the Columns View layout.
88
/// </summary>
99
public enum ColumnsViewSizeKind
1010
{
1111
/// <summary>
12-
/// The icon/heigh is compact.
12+
/// The size is compact.
1313
/// </summary>
1414
Compact = 1,
1515

1616
/// <summary>
17-
/// The icon/heigh is small.
17+
/// The size is small.
1818
/// </summary>
1919
Small = 2,
2020

2121
/// <summary>
22-
/// The icon/heigh is medium.
22+
/// The size is medium.
2323
/// </summary>
2424
Medium = 3,
2525

2626
/// <summary>
27-
/// The icon/heigh is large.
27+
/// The size is large.
2828
/// </summary>
2929
Large = 4,
3030

3131
/// <summary>
32-
/// The icon/heigh is extra large.
32+
/// The size is extra large.
3333
/// </summary>
3434
ExtraLarge = 5,
3535
}

src/Files.Core/Data/Enums/DetailsViewSizeKind.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,34 @@
22
// Licensed under the MIT License. See the LICENSE.
33

44
namespace Files.Core.Data.Enums
5-
{
5+
D
66
/// <summary>
7-
/// Defines constant that specifies the icon/height size in Details layout.
7+
/// Defines constants that specify the size in the Details View layout.
88
/// </summary>
99
public enum DetailsViewSizeKind
1010
{
1111
/// <summary>
12-
/// The icon/heigh is compact.
12+
/// The size is compact.
1313
/// </summary>
1414
Compact = 1,
1515

1616
/// <summary>
17-
/// The icon/heigh is small.
17+
/// The size is small.
1818
/// </summary>
1919
Small = 2,
2020

2121
/// <summary>
22-
/// The icon/heigh is medium.
22+
/// The size is medium.
2323
/// </summary>
2424
Medium = 3,
2525

2626
/// <summary>
27-
/// The icon/heigh is large.
27+
/// The size is large.
2828
/// </summary>
2929
Large = 4,
3030

3131
/// <summary>
32-
/// The icon/heigh is extra large.
32+
/// The size is extra large.
3333
/// </summary>
3434
ExtraLarge = 5,
3535
}

src/Files.Core/Data/Enums/GridViewSizeKind.cs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,67 +4,67 @@
44
namespace Files.Core.Data.Enums
55
{
66
/// <summary>
7-
/// Defines constant that specifies the icon/height size in Grid layout.
7+
/// Defines constants that specify the size in the Grid View layout.
88
/// </summary>
99
public enum GridViewSizeKind
1010
{
1111
/// <summary>
12-
/// The icon/heigh is small.
12+
/// The size is small.
1313
/// </summary>
1414
Small = 1,
1515

1616
/// <summary>
17-
/// The icon/heigh is medium.
17+
/// The size is medium.
1818
/// </summary>
1919
Medium = 2,
2020

2121
/// <summary>
22-
/// The icon/heigh is medium+.
22+
/// The size is medium+.
2323
/// </summary>
2424
Three = 3,
2525

2626
/// <summary>
27-
/// The icon/heigh is medium++.
27+
/// The size is medium++.
2828
/// </summary>
2929
Four = 4,
3030

3131
/// <summary>
32-
/// The icon/heigh is medium+++.
32+
/// The size is medium+++.
3333
/// </summary>
3434
Five = 5,
3535

3636
/// <summary>
37-
/// The icon/heigh is medium++++.
37+
/// The size is medium++++.
3838
/// </summary>
3939
Six = 6,
4040

4141
/// <summary>
42-
/// The icon/heigh is medium+++++.
42+
/// The size is medium+++++.
4343
/// </summary>
4444
Seven = 7,
4545

4646
/// <summary>
47-
/// The icon/heigh is large.
47+
/// The size is large.
4848
/// </summary>
4949
Large = 8,
5050

5151
/// <summary>
52-
/// The icon/heigh is large+.
52+
/// The size is large+.
5353
/// </summary>
5454
Nine = 9,
5555

5656
/// <summary>
57-
/// The icon/heigh is large++.
57+
/// The size is large++.
5858
/// </summary>
5959
Ten = 10,
6060

6161
/// <summary>
62-
/// The icon/heigh is large+++.
62+
/// The size is large+++.
6363
/// </summary>
6464
Eleven = 11,
6565

6666
/// <summary>
67-
/// The icon/heigh is extra large.
67+
/// The size is extra large.
6868
/// </summary>
6969
ExtraLarge = 12,
7070
}

src/Files.Core/Data/Enums/ListViewSizeKind.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,32 @@
44
namespace Files.Core.Data.Enums
55
{
66
/// <summary>
7-
/// Defines constant that specifies the icon/height size in List layout.
7+
/// Defines constants that specify the size in the List View layout.
88
/// </summary>
99
public enum ListViewSizeKind
1010
{
1111
/// <summary>
12-
/// The icon/heigh is compact.
12+
/// The size is compact.
1313
/// </summary>
1414
Compact = 1,
1515

1616
/// <summary>
17-
/// The icon/heigh is small.
17+
/// The size is small.
1818
/// </summary>
1919
Small = 2,
2020

2121
/// <summary>
22-
/// The icon/heigh is medium.
22+
/// The size is medium.
2323
/// </summary>
2424
Medium = 3,
2525

2626
/// <summary>
27-
/// The icon/heigh is large.
27+
/// The size is large.
2828
/// </summary>
2929
Large = 4,
3030

3131
/// <summary>
32-
/// The icon/heigh is extra large.
32+
/// The size is extra large.
3333
/// </summary>
3434
ExtraLarge = 5,
3535
}

src/Files.Core/Data/Enums/TilesViewSizeKind.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
namespace Files.Core.Data.Enums
55
{
66
/// <summary>
7-
/// Defines constant that specifies the icon/height size in Tiles layout.
7+
/// Defines constants that specify the size in the Tiles View layout.
88
/// </summary>
99
public enum TilesViewSizeKind
1010
{
1111
/// <summary>
12-
/// The icon/heigh is small.
12+
/// The size is small.
1313
/// </summary>
1414
Small = 1,
1515
}

0 commit comments

Comments
 (0)