Commit a378428f authored by Marc Gravell's avatar Marc Gravell

becuase splleing is hrad

parent 437b7d58
......@@ -202,11 +202,11 @@ internal void AssertNotNull()
public static RedisKey operator +(RedisKey x, RedisKey y)
{
byte[] xVal = x.value, yVal = y.value;
// either null? yeild the other; note this includes the "both null becomes null" case
// either null? yield the other; note this includes the "both null becomes null" case
if (xVal == null) return y;
if (yVal == null) return x;
// either empty? yeild the other; note this includes the "both null becomes null" case
// either empty? yield the other
if (xVal.Length == 0) return y;
if (yVal.Length == 0) return x;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment