Skip to content

Commit dc75383

Browse files
committed
correcting api docs
1 parent c22ab60 commit dc75383

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/DryIoc/Container.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12917,11 +12917,11 @@ public Expression ToExpression(Func<object, Expression> fallbackConverter) =>
1291712917
/// <summary>Policy to handle unresolved service.</summary>
1291812918
public enum IfUnresolved
1291912919
{
12920-
/// <summary>If service is unresolved for whatever means, it will throw the respective exception.</summary>
12920+
/// <summary>If service is unresolved for whatever means, the Resolve will throw the respective exception.</summary>
1292112921
Throw,
12922-
/// <summary>If service is unresolved for whatever means, it will return default(serviceType) value.</summary>
12922+
/// <summary>If service is unresolved for whatever means, the Resolve will return the default value.</summary>
1292312923
ReturnDefault,
12924-
/// <summary>If service is not registered, then it will return default, for other errors it will throw.</summary>
12924+
/// <summary>If service is not registered, then the Resolve will return the default value, for the other errors it will throw.</summary>
1292512925
ReturnDefaultIfNotRegistered,
1292612926
}
1292712927

0 commit comments

Comments
 (0)