Skip to content

Commit

Permalink
Corrected ambiguity.
Browse files Browse the repository at this point in the history
  • Loading branch information
tacosontitan committed Apr 15, 2024
1 parent 4153b10 commit 89b4de5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public static partial class Hussy
/// <param name="source">The source collection.</param>
/// <param name="action">The action to be applied to each element.</param>
/// <returns>The source collection.</returns>
public static IEnumerable<T> E<T>(
public static IEnumerable<T> Ec<T>(
this IEnumerable<T> source,
Action<int, int, int, int, T> action)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public static partial class Hussy
/// <param name="source">The source collection.</param>
/// <param name="action">The action to be applied to each element.</param>
/// <returns>The source collection.</returns>
public static IEnumerable<T> E<T>(
public static IEnumerable<T> Ec<T>(
this IEnumerable<T> source,
Action<int, int, int, T> action)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public static partial class Hussy
/// <param name="source">The source collection.</param>
/// <param name="action">The action to be applied to each element.</param>
/// <returns>The source collection.</returns>
public static IEnumerable<T> E<T>(
public static IEnumerable<T> Ec<T>(
this IEnumerable<T> source,
Action<int, int, T> action)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Hussy.Net/Iterators/ForEach/IndexedForEach.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public static partial class Hussy
/// <param name="source">The source collection.</param>
/// <param name="action">The action to be applied to each element.</param>
/// <returns>The source collection.</returns>
public static IEnumerable<T> E<T>(
public static IEnumerable<T> Ei<T>(
this IEnumerable<T> source,
Action<int, T> action)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Hussy.Net/Output/Append.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public static void A<T>(T value) =>
/// </param>
/// <typeparam name="TPrimary">Specifies the type of the primary value to write.</typeparam>
/// <typeparam name="TFallback">Specifies the type of the fallback value to write.</typeparam>
public static void Af<TPrimary, TFallback>(
public static void A<TPrimary, TFallback>(
TPrimary primaryValue,
TFallback fallbackValue)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Hussy.Net/Output/WriteLine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public static void W<T>(T value) =>
/// </param>
/// <typeparam name="TPrimary">Specifies the type of the primary value to write.</typeparam>
/// <typeparam name="TFallback">Specifies the type of the fallback value to write.</typeparam>
public static void Wf<TPrimary, TFallback>(
public static void W<TPrimary, TFallback>(
TPrimary primaryValue,
TFallback fallbackValue)
{
Expand Down

0 comments on commit 89b4de5

Please sign in to comment.