@@ -7,16 +7,16 @@ namespace PSql.Deploy;
77using System . Diagnostics ;
88
99/// <summary>
10- /// Represents a set of target databases with specified parallelism limits.
10+ /// Represents a group of target databases with specified parallelism limits.
1111/// </summary>
1212[ DebuggerDisplay ( @"\{{Name}, Count = {Targets.Count}\}" ) ]
1313public class SqlTargetDatabaseGroup
1414{
1515 private readonly E . TargetGroup _inner ;
1616
1717 /// <summary>
18- /// Initializes a new <see cref="SqlTargetDatabaseGroup"/> instance by converting from
19- /// the specified object.
18+ /// Initializes a new <see cref="SqlTargetDatabaseGroup"/> instance by
19+ /// converting from the specified object.
2020 /// </summary>
2121 /// <param name="obj">
2222 /// The object to convert into a <see cref="SqlTargetDatabaseGroup"/>.
@@ -36,24 +36,25 @@ public SqlTargetDatabaseGroup(object obj)
3636 }
3737
3838 /// <summary>
39- /// Initializes a new <see cref="SqlTargetDatabaseGroup"/> instance with the specified
40- /// values.
39+ /// Initializes a new <see cref="SqlTargetDatabaseGroup"/> instance with
40+ /// the specified values.
4141 /// </summary>
4242 /// <param name="targets">
43- /// The targets in the set .
43+ /// The target databases in the group .
4444 /// </param>
4545 /// <param name="name">
46- /// An optional name for the set . If provided, PSql.Deploy uses the name
47- /// in command output and logs.
46+ /// An optional name for the group . If provided, PSql.Deploy uses the
47+ /// name in command output and logs.
4848 /// </param>
4949 /// <param name="maxParallelism">
50- /// The maximum degree of parallelism across all targets in the set.
51- /// The special value <c>0</c> indicates parallelism equal to the count
52- /// of logical processors on the current machine. Cannot be negative.
50+ /// The maximum degree of parallelism across all target databases in the
51+ /// group. The special value <c>0</c> indicates parallelism equal to the
52+ /// count of logical processors on the current machine. Cannot be
53+ /// negative.
5354 /// </param>
5455 /// <param name="maxParallelismPerTarget">
55- /// The maximum degree of parallelism per target. The special value
56- /// <c>0</c> indicates parallelism equal to the count of logical
56+ /// The maximum degree of parallelism per target database . The special
57+ /// value <c>0</c> indicates parallelism equal to the count of logical
5758 /// processors on the current machine. Cannot be negative.
5859 /// </param>
5960 /// <exception cref="ArgumentNullException">
@@ -82,7 +83,7 @@ public SqlTargetDatabaseGroup(
8283 }
8384
8485 /// <summary>
85- /// Gets the inner target set wrapped by this object.
86+ /// Gets the inner target database group wrapped by this object.
8687 /// </summary>
8788 internal E . TargetGroup InnerGroup => _inner ;
8889
@@ -92,7 +93,7 @@ public SqlTargetDatabaseGroup(
9293 public IReadOnlyList < SqlTargetDatabase > Targets { get ; }
9394
9495 /// <summary>
95- /// Gets the descriptive name for the set , if any.
96+ /// Gets the descriptive name for the group , if any.
9697 /// </summary>
9798 public string ? Name => _inner . Name ;
9899
0 commit comments