Skip to content

Commit

Permalink
Merge branch 'Release-v1.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
gravity00 committed Jun 15, 2016
2 parents 95b0d3b + 25f5cd9 commit 843b509
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public class HandlingResult : HandlingResult<object>, IHandlingResult

/// <summary>
/// Creates a new instance.
/// The property <see cref="IHandlingResult.Handled"/> will be set to true.
/// The property <see cref="IHandlingResult{TResult}.Handled"/> will be set to true.
/// </summary>
public HandlingResult()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ IHandlingConfiguration<TParameter, TResult> On<TException>(

/// <summary>
/// Adds the given exception handler to this configuration. If this handler matches
/// a given exception on <see cref="Catch"/> and <see cref="IHandlingResult.Handled"/> is true,
/// a given exception on <see cref="Catch"/> and <see cref="IHandlingResult{TResult}.Handled"/> is true,
/// it will be considered successfully handled.
/// </summary>
/// <typeparam name="TException">The exception type</typeparam>
Expand Down Expand Up @@ -105,7 +105,7 @@ IHandlingConfiguration<TParameter, TResult> On<TException>(

/// <summary>
/// Adds the given exception handler to this configuration. If this handler matches
/// a given exception on <see cref="Catch"/> and <see cref="IHandlingResult.Handled"/> is true,
/// a given exception on <see cref="Catch"/> and <see cref="IHandlingResult{TResult}.Handled"/> is true,
/// it will be considered successfully handled.
/// </summary>
/// <typeparam name="TException">The exception type</typeparam>
Expand Down

0 comments on commit 843b509

Please sign in to comment.