Browse Source

short-circuting -> short-circuiting

pull/1751/head
Jane Doe 6 years ago
parent
commit
8a625954c4
  1. 2
      ICSharpCode.Decompiler/IL/Transforms/NullableLiftingTransform.cs

2
ICSharpCode.Decompiler/IL/Transforms/NullableLiftingTransform.cs

@ -69,7 +69,7 @@ namespace ICSharpCode.Decompiler.IL.Transforms @@ -69,7 +69,7 @@ namespace ICSharpCode.Decompiler.IL.Transforms
/// "a.GetValueOrDefault() == b.GetValueOrDefault() && (a.HasValue & b.HasValue)"
/// to
/// "(a.GetValueOrDefault() == b.GetValueOrDefault()) & (a.HasValue & b.HasValue)"
/// so this secondary entry point analyses logic.and as-if it was a short-circuting &&.
/// so this secondary entry point analyses logic.and as-if it was a short-circuiting &&.
/// </summary>
public bool Run(BinaryNumericInstruction bni)
{

Loading…
Cancel
Save