Commit c0d064f5 authored by Nick Craver's avatar Nick Craver

Merge pull request #334 from johnnycardy/master

Correct the bool operator comment
parents 1a6cb19a 57ccb73c
...@@ -404,7 +404,7 @@ int IComparable.CompareTo(object obj) ...@@ -404,7 +404,7 @@ int IComparable.CompareTo(object obj)
return value == null ? @null : (RedisValue)value.GetValueOrDefault(); return value == null ? @null : (RedisValue)value.GetValueOrDefault();
} }
/// <summary> /// <summary>
/// Creates a new RedisValue from a Boolean /// Converts the value to a Boolean
/// </summary> /// </summary>
public static explicit operator bool (RedisValue value) public static explicit operator bool (RedisValue value)
{ {
......
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