diff --git a/src/Hussy.Net/Iterators/ForEach/Cartesian/FourTermCartesianForEach.cs b/src/Hussy.Net/Iterators/ForEach/Cartesian/FourTermCartesianForEach.cs index 81daf04..95aca33 100644 --- a/src/Hussy.Net/Iterators/ForEach/Cartesian/FourTermCartesianForEach.cs +++ b/src/Hussy.Net/Iterators/ForEach/Cartesian/FourTermCartesianForEach.cs @@ -12,7 +12,7 @@ public static partial class Hussy /// The source collection. /// The action to be applied to each element. /// The source collection. - public static IEnumerable E( + public static IEnumerable Ec( this IEnumerable source, Action action) { diff --git a/src/Hussy.Net/Iterators/ForEach/Cartesian/ThreeTermCartesianForEach.cs b/src/Hussy.Net/Iterators/ForEach/Cartesian/ThreeTermCartesianForEach.cs index 2631511..f94141d 100644 --- a/src/Hussy.Net/Iterators/ForEach/Cartesian/ThreeTermCartesianForEach.cs +++ b/src/Hussy.Net/Iterators/ForEach/Cartesian/ThreeTermCartesianForEach.cs @@ -12,7 +12,7 @@ public static partial class Hussy /// The source collection. /// The action to be applied to each element. /// The source collection. - public static IEnumerable E( + public static IEnumerable Ec( this IEnumerable source, Action action) { diff --git a/src/Hussy.Net/Iterators/ForEach/Cartesian/TwoTermCartesianForEach.cs b/src/Hussy.Net/Iterators/ForEach/Cartesian/TwoTermCartesianForEach.cs index 704acd1..45ef316 100644 --- a/src/Hussy.Net/Iterators/ForEach/Cartesian/TwoTermCartesianForEach.cs +++ b/src/Hussy.Net/Iterators/ForEach/Cartesian/TwoTermCartesianForEach.cs @@ -12,7 +12,7 @@ public static partial class Hussy /// The source collection. /// The action to be applied to each element. /// The source collection. - public static IEnumerable E( + public static IEnumerable Ec( this IEnumerable source, Action action) { diff --git a/src/Hussy.Net/Iterators/ForEach/IndexedForEach.cs b/src/Hussy.Net/Iterators/ForEach/IndexedForEach.cs index 69a2665..5ad1a7a 100644 --- a/src/Hussy.Net/Iterators/ForEach/IndexedForEach.cs +++ b/src/Hussy.Net/Iterators/ForEach/IndexedForEach.cs @@ -12,7 +12,7 @@ public static partial class Hussy /// The source collection. /// The action to be applied to each element. /// The source collection. - public static IEnumerable E( + public static IEnumerable Ei( this IEnumerable source, Action action) { diff --git a/src/Hussy.Net/Output/Append.cs b/src/Hussy.Net/Output/Append.cs index bc60d03..acb4bfa 100644 --- a/src/Hussy.Net/Output/Append.cs +++ b/src/Hussy.Net/Output/Append.cs @@ -39,7 +39,7 @@ public static void A(T value) => /// /// Specifies the type of the primary value to write. /// Specifies the type of the fallback value to write. - public static void Af( + public static void A( TPrimary primaryValue, TFallback fallbackValue) { diff --git a/src/Hussy.Net/Output/WriteLine.cs b/src/Hussy.Net/Output/WriteLine.cs index b6eb3d2..558506c 100644 --- a/src/Hussy.Net/Output/WriteLine.cs +++ b/src/Hussy.Net/Output/WriteLine.cs @@ -40,7 +40,7 @@ public static void W(T value) => /// /// Specifies the type of the primary value to write. /// Specifies the type of the fallback value to write. - public static void Wf( + public static void W( TPrimary primaryValue, TFallback fallbackValue) {