diff --git a/X10D/src/BooleanExtensions.cs b/X10D/src/BooleanExtensions.cs index abea738..54e8ac4 100644 --- a/X10D/src/BooleanExtensions.cs +++ b/X10D/src/BooleanExtensions.cs @@ -11,7 +11,8 @@ /// /// The boolean. /// The boolean comparator. - /// Returns when and are Otherwise, the output is . + /// Returns when and are + /// Otherwise, the output is . public static bool And(this bool value, bool comparison) { return value && comparison; @@ -22,7 +23,8 @@ /// /// The boolean. /// The boolean comparator. - /// Returns if and are . Otherwise, . + /// Returns if and are + /// . Otherwise, . public static bool NAnd(this bool value, bool comparison) { return !(value && comparison); @@ -33,7 +35,8 @@ /// /// The boolean. /// The boolean comparator. - /// Returns if and are . Otherwise, . + /// Returns if and are + /// . Otherwise, . public static bool NOr(this bool value, bool comparison) { return !(value || comparison); @@ -54,7 +57,8 @@ /// /// The boolean. /// The boolean comparator. - /// Returns if or is . + /// Returns if or is + /// . public static bool Or(this bool value, bool comparison) { return value || comparison; @@ -85,7 +89,8 @@ /// /// The boolean. /// The boolean comparator. - /// Returns if and are the same, Otherwise . + /// Returns if and are + /// the same, Otherwise . public static bool XNOr(this bool value, bool comparison) { return !(value ^ comparison); @@ -96,7 +101,9 @@ /// /// The boolean. /// The boolean comparator. - /// Returns if and are or if and are . + /// Returns if and are + /// or if and are + /// . public static bool XOr(this bool value, bool comparison) { return value ^ comparison;