Commit 71d12d4f authored by Nick Craver's avatar Nick Craver

Cleanup: enums

parent fe58f595
...@@ -22,7 +22,6 @@ public enum CommandFlags ...@@ -22,7 +22,6 @@ public enum CommandFlags
/// </summary> /// </summary>
FireAndForget = 2, FireAndForget = 2,
/// <summary> /// <summary>
/// This operation should be performed on the master if it is available, but read operations may /// This operation should be performed on the master if it is available, but read operations may
/// be performed on a slave if no master is available. This is the default option. /// be performed on a slave if no master is available. This is the default option.
......
namespace StackExchange.Redis namespace StackExchange.Redis
{ {
enum RedisCommand internal enum RedisCommand
{ {
APPEND, APPEND,
ASKING, ASKING,
......
...@@ -42,5 +42,4 @@ public enum RedisType ...@@ -42,5 +42,4 @@ public enum RedisType
/// </summary> /// </summary>
Unknown, Unknown,
} }
} }
...@@ -18,5 +18,4 @@ public enum ShutdownMode ...@@ -18,5 +18,4 @@ public enum ShutdownMode
/// </summary> /// </summary>
Always Always
} }
} }
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