Commit 80a2abc1 authored by mgravell's avatar mgravell

fix #1336 - typo

parent 7a34d753
......@@ -16,7 +16,7 @@
- add: support for `LATENCY` and `MEMORY` (#1204)
- add: support for `HSTRLEN` (#1241 via eitanhs)
- add: `GeoRadiusResult` is now mockable (#1175 via firenero)
- fix: various documentation fixes (#1162, #1135, #1203, #1240, #1245, #1159, #1311, #1339)
- fix: various documentation fixes (#1162, #1135, #1203, #1240, #1245, #1159, #1311, #1339, #1336)
- fix: rare race-condition around exception data (#1342)
## 2.0.600
......
......@@ -132,13 +132,13 @@ public override void GetObjectData(SerializationInfo info, StreamingContext cont
public partial class RedisException : Exception
{
/// <summary>
/// Crerates a new <see cref="RedisException"/>.
/// Creates a new <see cref="RedisException"/>.
/// </summary>
/// <param name="message">The message for the exception.</param>
public RedisException(string message) : base(message) { }
/// <summary>
/// Crerates a new <see cref="RedisException"/>.
/// Creates a new <see cref="RedisException"/>.
/// </summary>
/// <param name="message">The message for the exception.</param>
/// <param name="innerException">The inner exception.</param>
......
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