Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
StackExchange.Redis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tsai
StackExchange.Redis
Commits
80a2abc1
Commit
80a2abc1
authored
Feb 04, 2020
by
mgravell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix #1336 - typo
parent
7a34d753
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
ReleaseNotes.md
docs/ReleaseNotes.md
+1
-1
Exceptions.cs
src/StackExchange.Redis/Exceptions.cs
+2
-2
No files found.
docs/ReleaseNotes.md
View file @
80a2abc1
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
-
add: support for
`LATENCY`
and
`MEMORY`
(#1204)
-
add: support for
`LATENCY`
and
`MEMORY`
(#1204)
-
add: support for
`HSTRLEN`
(#1241 via eitanhs)
-
add: support for
`HSTRLEN`
(#1241 via eitanhs)
-
add:
`GeoRadiusResult`
is now mockable (#1175 via firenero)
-
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)
-
fix: rare race-condition around exception data (#1342)
## 2.0.600
## 2.0.600
...
...
src/StackExchange.Redis/Exceptions.cs
View file @
80a2abc1
...
@@ -132,13 +132,13 @@ public override void GetObjectData(SerializationInfo info, StreamingContext cont
...
@@ -132,13 +132,13 @@ public override void GetObjectData(SerializationInfo info, StreamingContext cont
public
partial
class
RedisException
:
Exception
public
partial
class
RedisException
:
Exception
{
{
/// <summary>
/// <summary>
/// Cre
r
ates a new <see cref="RedisException"/>.
/// Creates a new <see cref="RedisException"/>.
/// </summary>
/// </summary>
/// <param name="message">The message for the exception.</param>
/// <param name="message">The message for the exception.</param>
public
RedisException
(
string
message
)
:
base
(
message
)
{
}
public
RedisException
(
string
message
)
:
base
(
message
)
{
}
/// <summary>
/// <summary>
/// Cre
r
ates a new <see cref="RedisException"/>.
/// Creates a new <see cref="RedisException"/>.
/// </summary>
/// </summary>
/// <param name="message">The message for the exception.</param>
/// <param name="message">The message for the exception.</param>
/// <param name="innerException">The inner exception.</param>
/// <param name="innerException">The inner exception.</param>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment