Skip to content

Commit 5382c7f

Browse files
committed
Fix trailing whitespace
1 parent 5921b60 commit 5382c7f

File tree

7 files changed

+57
-57
lines changed

7 files changed

+57
-57
lines changed

MoreLinq/EquiZip.g.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ static partial class MoreEnumerable
4040
/// <returns>
4141
/// An <code>IEnumerable</code> that contains merged elements of two input sequences.</returns>
4242
/// <exception cref="ArgumentNullException">
43-
/// <paramref name="first"/>,
44-
/// <paramref name="second"/> or
43+
/// <paramref name="first"/>,
44+
/// <paramref name="second"/> or
4545
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
4646
/// <exception cref="InvalidOperationException">
4747
/// The input sequences are of different lengths.</exception>
@@ -104,9 +104,9 @@ public static IEnumerable<TResult> EquiZip<TFirst, TSecond, TResult>(
104104
/// <returns>
105105
/// An <code>IEnumerable</code> that contains merged elements of three input sequences.</returns>
106106
/// <exception cref="ArgumentNullException">
107-
/// <paramref name="first"/>,
108-
/// <paramref name="second"/>,
109-
/// <paramref name="third"/> or
107+
/// <paramref name="first"/>,
108+
/// <paramref name="second"/>,
109+
/// <paramref name="third"/> or
110110
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
111111
/// <exception cref="InvalidOperationException">
112112
/// The input sequences are of different lengths.</exception>
@@ -174,10 +174,10 @@ public static IEnumerable<TResult> EquiZip<TFirst, TSecond, TThird, TResult>(
174174
/// <returns>
175175
/// An <code>IEnumerable</code> that contains merged elements of four input sequences.</returns>
176176
/// <exception cref="ArgumentNullException">
177-
/// <paramref name="first"/>,
178-
/// <paramref name="second"/>,
179-
/// <paramref name="third"/>,
180-
/// <paramref name="fourth"/> or
177+
/// <paramref name="first"/>,
178+
/// <paramref name="second"/>,
179+
/// <paramref name="third"/>,
180+
/// <paramref name="fourth"/> or
181181
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
182182
/// <exception cref="InvalidOperationException">
183183
/// The input sequences are of different lengths.</exception>

MoreLinq/EquiZip.g.tt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ namespace MoreLinq
9191
/// An <code>IEnumerable</code> that contains merged elements of <#= o.cardinal #> input sequences.</returns>
9292
/// <exception cref="ArgumentNullException">
9393
<# foreach (var arg in o.Arguments) { #>
94-
/// <paramref name="<#= arg.Name #>"/><#= arg.IsLast ? " or " : ", " #>
94+
/// <paramref name="<#= arg.Name #>"/><#= arg.IsLast ? " or" : "," #>
9595
<# } #>
9696
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
9797
/// <exception cref="InvalidOperationException">

MoreLinq/Extensions.g.cs

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1342,8 +1342,8 @@ public static partial class EquiZipExtension
13421342
/// <returns>
13431343
/// An <code>IEnumerable</code> that contains merged elements of two input sequences.</returns>
13441344
/// <exception cref="ArgumentNullException">
1345-
/// <paramref name="first"/>,
1346-
/// <paramref name="second"/> or
1345+
/// <paramref name="first"/>,
1346+
/// <paramref name="second"/> or
13471347
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
13481348
/// <exception cref="InvalidOperationException">
13491349
/// The input sequences are of different lengths.</exception>
@@ -1376,9 +1376,9 @@ public static IEnumerable<TResult> EquiZip<TFirst, TSecond, TResult>(
13761376
/// <returns>
13771377
/// An <code>IEnumerable</code> that contains merged elements of three input sequences.</returns>
13781378
/// <exception cref="ArgumentNullException">
1379-
/// <paramref name="first"/>,
1380-
/// <paramref name="second"/>,
1381-
/// <paramref name="third"/> or
1379+
/// <paramref name="first"/>,
1380+
/// <paramref name="second"/>,
1381+
/// <paramref name="third"/> or
13821382
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
13831383
/// <exception cref="InvalidOperationException">
13841384
/// The input sequences are of different lengths.</exception>
@@ -1414,10 +1414,10 @@ public static IEnumerable<TResult> EquiZip<TFirst, TSecond, TThird, TResult>(
14141414
/// <returns>
14151415
/// An <code>IEnumerable</code> that contains merged elements of four input sequences.</returns>
14161416
/// <exception cref="ArgumentNullException">
1417-
/// <paramref name="first"/>,
1418-
/// <paramref name="second"/>,
1419-
/// <paramref name="third"/>,
1420-
/// <paramref name="fourth"/> or
1417+
/// <paramref name="first"/>,
1418+
/// <paramref name="second"/>,
1419+
/// <paramref name="third"/>,
1420+
/// <paramref name="fourth"/> or
14211421
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
14221422
/// <exception cref="InvalidOperationException">
14231423
/// The input sequences are of different lengths.</exception>
@@ -6789,8 +6789,8 @@ public static partial class ZipLongestExtension
67896789
/// <returns>
67906790
/// An <code>IEnumerable</code> that contains merged elements of two input sequences.</returns>
67916791
/// <exception cref="ArgumentNullException">
6792-
/// <paramref name="first"/>,
6793-
/// <paramref name="second"/> or
6792+
/// <paramref name="first"/>,
6793+
/// <paramref name="second"/> or
67946794
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
67956795
/// <remarks>
67966796
/// <para>
@@ -6825,9 +6825,9 @@ public static IEnumerable<TResult> ZipLongest<TFirst, TSecond, TResult>(
68256825
/// <returns>
68266826
/// An <code>IEnumerable</code> that contains merged elements of three input sequences.</returns>
68276827
/// <exception cref="ArgumentNullException">
6828-
/// <paramref name="first"/>,
6829-
/// <paramref name="second"/>,
6830-
/// <paramref name="third"/> or
6828+
/// <paramref name="first"/>,
6829+
/// <paramref name="second"/>,
6830+
/// <paramref name="third"/> or
68316831
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
68326832
/// <remarks>
68336833
/// <para>
@@ -6865,10 +6865,10 @@ public static IEnumerable<TResult> ZipLongest<TFirst, TSecond, TThird, TResult>(
68656865
/// <returns>
68666866
/// An <code>IEnumerable</code> that contains merged elements of four input sequences.</returns>
68676867
/// <exception cref="ArgumentNullException">
6868-
/// <paramref name="first"/>,
6869-
/// <paramref name="second"/>,
6870-
/// <paramref name="third"/>,
6871-
/// <paramref name="fourth"/> or
6868+
/// <paramref name="first"/>,
6869+
/// <paramref name="second"/>,
6870+
/// <paramref name="third"/>,
6871+
/// <paramref name="fourth"/> or
68726872
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
68736873
/// <remarks>
68746874
/// <para>
@@ -6910,8 +6910,8 @@ public static partial class ZipShortestExtension
69106910
/// <returns>
69116911
/// An <code>IEnumerable</code> that contains merged elements of two input sequences.</returns>
69126912
/// <exception cref="ArgumentNullException">
6913-
/// <paramref name="first"/>,
6914-
/// <paramref name="second"/> or
6913+
/// <paramref name="first"/>,
6914+
/// <paramref name="second"/> or
69156915
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
69166916
/// <remarks>
69176917
/// <para>
@@ -6947,9 +6947,9 @@ public static IEnumerable<TResult> ZipShortest<TFirst, TSecond, TResult>(
69476947
/// <returns>
69486948
/// An <code>IEnumerable</code> that contains merged elements of three input sequences.</returns>
69496949
/// <exception cref="ArgumentNullException">
6950-
/// <paramref name="first"/>,
6951-
/// <paramref name="second"/>,
6952-
/// <paramref name="third"/> or
6950+
/// <paramref name="first"/>,
6951+
/// <paramref name="second"/>,
6952+
/// <paramref name="third"/> or
69536953
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
69546954
/// <remarks>
69556955
/// <para>
@@ -6988,10 +6988,10 @@ public static IEnumerable<TResult> ZipShortest<TFirst, TSecond, TThird, TResult>
69886988
/// <returns>
69896989
/// An <code>IEnumerable</code> that contains merged elements of four input sequences.</returns>
69906990
/// <exception cref="ArgumentNullException">
6991-
/// <paramref name="first"/>,
6992-
/// <paramref name="second"/>,
6993-
/// <paramref name="third"/>,
6994-
/// <paramref name="fourth"/> or
6991+
/// <paramref name="first"/>,
6992+
/// <paramref name="second"/>,
6993+
/// <paramref name="third"/>,
6994+
/// <paramref name="fourth"/> or
69956995
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
69966996
/// <remarks>
69976997
/// <para>

MoreLinq/ZipLongest.g.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ static partial class MoreEnumerable
3939
/// <returns>
4040
/// An <code>IEnumerable</code> that contains merged elements of two input sequences.</returns>
4141
/// <exception cref="ArgumentNullException">
42-
/// <paramref name="first"/>,
43-
/// <paramref name="second"/> or
42+
/// <paramref name="first"/>,
43+
/// <paramref name="second"/> or
4444
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
4545
/// <remarks>
4646
/// <para>
@@ -104,9 +104,9 @@ public static IEnumerable<TResult> ZipLongest<TFirst, TSecond, TResult>(
104104
/// <returns>
105105
/// An <code>IEnumerable</code> that contains merged elements of three input sequences.</returns>
106106
/// <exception cref="ArgumentNullException">
107-
/// <paramref name="first"/>,
108-
/// <paramref name="second"/>,
109-
/// <paramref name="third"/> or
107+
/// <paramref name="first"/>,
108+
/// <paramref name="second"/>,
109+
/// <paramref name="third"/> or
110110
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
111111
/// <remarks>
112112
/// <para>
@@ -178,10 +178,10 @@ public static IEnumerable<TResult> ZipLongest<TFirst, TSecond, TThird, TResult>(
178178
/// <returns>
179179
/// An <code>IEnumerable</code> that contains merged elements of four input sequences.</returns>
180180
/// <exception cref="ArgumentNullException">
181-
/// <paramref name="first"/>,
182-
/// <paramref name="second"/>,
183-
/// <paramref name="third"/>,
184-
/// <paramref name="fourth"/> or
181+
/// <paramref name="first"/>,
182+
/// <paramref name="second"/>,
183+
/// <paramref name="third"/>,
184+
/// <paramref name="fourth"/> or
185185
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
186186
/// <remarks>
187187
/// <para>

MoreLinq/ZipLongest.g.tt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ namespace MoreLinq
9090
/// An <code>IEnumerable</code> that contains merged elements of <#= o.cardinal #> input sequences.</returns>
9191
/// <exception cref="ArgumentNullException">
9292
<# foreach (var arg in o.Arguments) { #>
93-
/// <paramref name="<#= arg.Name #>"/><#= arg.IsLast ? " or " : ", " #>
93+
/// <paramref name="<#= arg.Name #>"/><#= arg.IsLast ? " or" : "," #>
9494
<# } #>
9595
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
9696
/// <remarks>

MoreLinq/ZipShortest.g.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ static partial class MoreEnumerable
3939
/// <returns>
4040
/// An <code>IEnumerable</code> that contains merged elements of two input sequences.</returns>
4141
/// <exception cref="ArgumentNullException">
42-
/// <paramref name="first"/>,
43-
/// <paramref name="second"/> or
42+
/// <paramref name="first"/>,
43+
/// <paramref name="second"/> or
4444
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
4545
/// <remarks>
4646
/// <para>
@@ -91,9 +91,9 @@ public static IEnumerable<TResult> ZipShortest<TFirst, TSecond, TResult>(
9191
/// <returns>
9292
/// An <code>IEnumerable</code> that contains merged elements of three input sequences.</returns>
9393
/// <exception cref="ArgumentNullException">
94-
/// <paramref name="first"/>,
95-
/// <paramref name="second"/>,
96-
/// <paramref name="third"/> or
94+
/// <paramref name="first"/>,
95+
/// <paramref name="second"/>,
96+
/// <paramref name="third"/> or
9797
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
9898
/// <remarks>
9999
/// <para>
@@ -149,10 +149,10 @@ public static IEnumerable<TResult> ZipShortest<TFirst, TSecond, TThird, TResult>
149149
/// <returns>
150150
/// An <code>IEnumerable</code> that contains merged elements of four input sequences.</returns>
151151
/// <exception cref="ArgumentNullException">
152-
/// <paramref name="first"/>,
153-
/// <paramref name="second"/>,
154-
/// <paramref name="third"/>,
155-
/// <paramref name="fourth"/> or
152+
/// <paramref name="first"/>,
153+
/// <paramref name="second"/>,
154+
/// <paramref name="third"/>,
155+
/// <paramref name="fourth"/> or
156156
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
157157
/// <remarks>
158158
/// <para>

MoreLinq/ZipShortest.g.tt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ namespace MoreLinq
9090
/// An <code>IEnumerable</code> that contains merged elements of <#= o.cardinal #> input sequences.</returns>
9191
/// <exception cref="ArgumentNullException">
9292
<# foreach (var arg in o.Arguments) { #>
93-
/// <paramref name="<#= arg.Name #>"/><#= arg.IsLast ? " or " : ", " #>
93+
/// <paramref name="<#= arg.Name #>"/><#= arg.IsLast ? " or" : "," #>
9494
<# } #>
9595
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
9696
/// <remarks>

0 commit comments

Comments
 (0)