Skip to content

Commit

Permalink
correcting api docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dadhi committed Jun 10, 2021
1 parent c22ab60 commit dc75383
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/DryIoc/Container.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12917,11 +12917,11 @@ public Expression ToExpression(Func<object, Expression> fallbackConverter) =>
/// <summary>Policy to handle unresolved service.</summary>
public enum IfUnresolved
{
/// <summary>If service is unresolved for whatever means, it will throw the respective exception.</summary>
/// <summary>If service is unresolved for whatever means, the Resolve will throw the respective exception.</summary>
Throw,
/// <summary>If service is unresolved for whatever means, it will return default(serviceType) value.</summary>
/// <summary>If service is unresolved for whatever means, the Resolve will return the default value.</summary>
ReturnDefault,
/// <summary>If service is not registered, then it will return default, for other errors it will throw.</summary>
/// <summary>If service is not registered, then the Resolve will return the default value, for the other errors it will throw.</summary>
ReturnDefaultIfNotRegistered,
}

Expand Down

0 comments on commit dc75383

Please sign in to comment.