* typo: Double word "and"
* Update src/System.Linq.Expressions/tests/BinaryOperators/Bitwise/BinaryExclusiveOrTests.cs
Co-Authored-By: nschonni <nschonni@gmail.com>
Commit migrated from https://github.com/dotnet/corefx/commit/
9978c8db1d5d6496d133627446bfc9165f207264
BinaryExpression e = Expression.ExclusiveOr(Expression.Parameter(typeof(int), "a"), Expression.Parameter(typeof(int), "b"));
Assert.Equal("(a ^ b)", e.ToString());
- // NB: Unlike And and Or, there's no special case for bool and bool? here.
+ // NB: Unlike 'Expression.And' and 'Expression.Or', there's no special case for bool and bool? here.
}
}
}
//
// For example, a test with an expect result in the format of 0.xxxxxxxxxxxxxxxxx will use
// CrossPlatformMachineEpsilon for the variance, while an expected result in the format of 0.0xxxxxxxxxxxxxxxxx
- // will use CrossPlatformMachineEpsilon / 10 and and expected result in the format of x.xxxxxxxxxxxxxxxx will
+ // will use CrossPlatformMachineEpsilon / 10 and expected result in the format of x.xxxxxxxxxxxxxxxx will
// use CrossPlatformMachineEpsilon * 10.
private const double CrossPlatformMachineEpsilon = 8.8817841970012523e-16;