Skip to content
This repository was archived by the owner on Feb 19, 2025. It is now read-only.

Commit a16a63f

Browse files
committed
Added comment details
1 parent 4ae0622 commit a16a63f

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

UniqueFileGenerator/Settings.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
namespace UniqueFileGenerator;
44

5+
/// <summary>
6+
/// The configuration settings used to generate new files.
7+
/// </summary>
58
public sealed class Settings
69
{
710
/// <summary>
@@ -25,7 +28,8 @@ public sealed class Settings
2528
public string OutputDirectory { get; }
2629

2730
/// <summary>
28-
/// The size of each created file.
31+
/// The size of each created file, if specified.
32+
/// Otherwise, a default size is used.
2933
/// </summary>
3034
public int? SizeInBytes { get; }
3135

@@ -110,8 +114,6 @@ public Settings(ParsedArguments parsedArgs)
110114
CharacterType.Number;
111115
}
112116

113-
114-
115117
/// <summary>
116118
/// Confirm with the user if they wish to continue despite higher-than-expected values.
117119
/// </summary>

0 commit comments

Comments
 (0)