diff --git a/X10D/src/BooleanExtensions/BooleanExtensions.cs b/X10D/src/BooleanExtensions/BooleanExtensions.cs index 6d83302..10589de 100644 --- a/X10D/src/BooleanExtensions/BooleanExtensions.cs +++ b/X10D/src/BooleanExtensions/BooleanExtensions.cs @@ -21,11 +21,7 @@ namespace X10D.BooleanExtensions /// Converts the current Boolean value to the equivalent 8-bit unsigned integer. /// /// The Boolean value to convert. - /// - /// 1 if is - /// -or- - /// 0 otherwise. - /// + /// 1 if is , or 0 otherwise. /// /// The following example illustrates the conversion of to values. /// @@ -48,11 +44,7 @@ namespace X10D.BooleanExtensions /// Converts the current Boolean value to the equivalent decimal number. /// /// The Boolean value to convert. - /// - /// 1 if is - /// -or- - /// 0 otherwise. - /// + /// 1 if is , or 0 otherwise. /// /// The following example illustrates the conversion of to values. /// @@ -75,11 +67,7 @@ namespace X10D.BooleanExtensions /// Converts the current Boolean value to the equivalent double-precision floating-point number. /// /// The Boolean value to convert. - /// - /// 1 if is - /// -or- - /// 0 otherwise. - /// + /// 1 if is , or 0 otherwise. /// /// The following example illustrates the conversion of to values. /// @@ -102,11 +90,7 @@ namespace X10D.BooleanExtensions /// Converts the current Boolean value to the equivalent 16-bit signed integer. /// /// The Boolean value to convert. - /// - /// 1 if is - /// -or- - /// 0 otherwise. - /// + /// 1 if is , or 0 otherwise. /// /// The following example illustrates the conversion of to values. /// @@ -131,11 +115,7 @@ namespace X10D.BooleanExtensions /// Converts the current Boolean value to the equivalent 32-bit signed integer. /// /// The Boolean value to convert. - /// - /// 1 if is - /// -or- - /// 0 otherwise. - /// + /// 1 if is , or 0 otherwise. /// /// The following example illustrates the conversion of to values. /// @@ -160,11 +140,7 @@ namespace X10D.BooleanExtensions /// Converts the current Boolean value to the equivalent 64-bit signed integer. /// /// The Boolean value to convert. - /// - /// 1 if is - /// -or- - /// 0 otherwise. - /// + /// 1 if is , or 0 otherwise. /// /// The following example illustrates the conversion of to values. /// @@ -189,11 +165,7 @@ namespace X10D.BooleanExtensions /// Converts the current Boolean value to the equivalent single-precision floating-point number. /// /// The Boolean value to convert. - /// - /// 1 if is - /// -or- - /// 0 otherwise. - /// + /// 1 if is , or 0 otherwise. /// /// The following example illustrates the conversion of to values. ///