Skip to content

Commit b8dde57

Browse files
OracePierre LANDO
authored andcommitted
Fix trailing whitespace
1 parent 47f253f commit b8dde57

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
@@ -1353,8 +1353,8 @@ public static partial class EquiZipExtension
13531353
/// <returns>
13541354
/// An <code>IEnumerable</code> that contains merged elements of two input sequences.</returns>
13551355
/// <exception cref="ArgumentNullException">
1356-
/// <paramref name="first"/>,
1357-
/// <paramref name="second"/> or
1356+
/// <paramref name="first"/>,
1357+
/// <paramref name="second"/> or
13581358
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
13591359
/// <exception cref="InvalidOperationException">
13601360
/// The input sequences are of different lengths.</exception>
@@ -1387,9 +1387,9 @@ public static IEnumerable<TResult> EquiZip<TFirst, TSecond, TResult>(
13871387
/// <returns>
13881388
/// An <code>IEnumerable</code> that contains merged elements of three input sequences.</returns>
13891389
/// <exception cref="ArgumentNullException">
1390-
/// <paramref name="first"/>,
1391-
/// <paramref name="second"/>,
1392-
/// <paramref name="third"/> or
1390+
/// <paramref name="first"/>,
1391+
/// <paramref name="second"/>,
1392+
/// <paramref name="third"/> or
13931393
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
13941394
/// <exception cref="InvalidOperationException">
13951395
/// The input sequences are of different lengths.</exception>
@@ -1425,10 +1425,10 @@ public static IEnumerable<TResult> EquiZip<TFirst, TSecond, TThird, TResult>(
14251425
/// <returns>
14261426
/// An <code>IEnumerable</code> that contains merged elements of four input sequences.</returns>
14271427
/// <exception cref="ArgumentNullException">
1428-
/// <paramref name="first"/>,
1429-
/// <paramref name="second"/>,
1430-
/// <paramref name="third"/>,
1431-
/// <paramref name="fourth"/> or
1428+
/// <paramref name="first"/>,
1429+
/// <paramref name="second"/>,
1430+
/// <paramref name="third"/>,
1431+
/// <paramref name="fourth"/> or
14321432
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
14331433
/// <exception cref="InvalidOperationException">
14341434
/// The input sequences are of different lengths.</exception>
@@ -6721,8 +6721,8 @@ public static partial class ZipLongestExtension
67216721
/// <returns>
67226722
/// An <code>IEnumerable</code> that contains merged elements of two input sequences.</returns>
67236723
/// <exception cref="ArgumentNullException">
6724-
/// <paramref name="first"/>,
6725-
/// <paramref name="second"/> or
6724+
/// <paramref name="first"/>,
6725+
/// <paramref name="second"/> or
67266726
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
67276727
/// <remarks>
67286728
/// <para>
@@ -6757,9 +6757,9 @@ public static IEnumerable<TResult> ZipLongest<TFirst, TSecond, TResult>(
67576757
/// <returns>
67586758
/// An <code>IEnumerable</code> that contains merged elements of three input sequences.</returns>
67596759
/// <exception cref="ArgumentNullException">
6760-
/// <paramref name="first"/>,
6761-
/// <paramref name="second"/>,
6762-
/// <paramref name="third"/> or
6760+
/// <paramref name="first"/>,
6761+
/// <paramref name="second"/>,
6762+
/// <paramref name="third"/> or
67636763
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
67646764
/// <remarks>
67656765
/// <para>
@@ -6797,10 +6797,10 @@ public static IEnumerable<TResult> ZipLongest<TFirst, TSecond, TThird, TResult>(
67976797
/// <returns>
67986798
/// An <code>IEnumerable</code> that contains merged elements of four input sequences.</returns>
67996799
/// <exception cref="ArgumentNullException">
6800-
/// <paramref name="first"/>,
6801-
/// <paramref name="second"/>,
6802-
/// <paramref name="third"/>,
6803-
/// <paramref name="fourth"/> or
6800+
/// <paramref name="first"/>,
6801+
/// <paramref name="second"/>,
6802+
/// <paramref name="third"/>,
6803+
/// <paramref name="fourth"/> or
68046804
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
68056805
/// <remarks>
68066806
/// <para>
@@ -6842,8 +6842,8 @@ public static partial class ZipShortestExtension
68426842
/// <returns>
68436843
/// An <code>IEnumerable</code> that contains merged elements of two input sequences.</returns>
68446844
/// <exception cref="ArgumentNullException">
6845-
/// <paramref name="first"/>,
6846-
/// <paramref name="second"/> or
6845+
/// <paramref name="first"/>,
6846+
/// <paramref name="second"/> or
68476847
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
68486848
/// <remarks>
68496849
/// <para>
@@ -6879,9 +6879,9 @@ public static IEnumerable<TResult> ZipShortest<TFirst, TSecond, TResult>(
68796879
/// <returns>
68806880
/// An <code>IEnumerable</code> that contains merged elements of three input sequences.</returns>
68816881
/// <exception cref="ArgumentNullException">
6882-
/// <paramref name="first"/>,
6883-
/// <paramref name="second"/>,
6884-
/// <paramref name="third"/> or
6882+
/// <paramref name="first"/>,
6883+
/// <paramref name="second"/>,
6884+
/// <paramref name="third"/> or
68856885
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
68866886
/// <remarks>
68876887
/// <para>
@@ -6920,10 +6920,10 @@ public static IEnumerable<TResult> ZipShortest<TFirst, TSecond, TThird, TResult>
69206920
/// <returns>
69216921
/// An <code>IEnumerable</code> that contains merged elements of four input sequences.</returns>
69226922
/// <exception cref="ArgumentNullException">
6923-
/// <paramref name="first"/>,
6924-
/// <paramref name="second"/>,
6925-
/// <paramref name="third"/>,
6926-
/// <paramref name="fourth"/> or
6923+
/// <paramref name="first"/>,
6924+
/// <paramref name="second"/>,
6925+
/// <paramref name="third"/>,
6926+
/// <paramref name="fourth"/> or
69276927
/// <paramref name="resultSelector"/> is <code>null</code>.</exception>
69286928
/// <remarks>
69296929
/// <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)