Skip to content

Commit e46a75a

Browse files
authored
refactor (#77)
1 parent a955b3c commit e46a75a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/SenseNet.Tools/Tools/ToolsExtensions.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public static class ToolsExtensions
1010
#pragma warning restore CS1591
1111
{
1212
/// <summary>
13-
/// Adds the default retrier to the service collection.
13+
/// Adds the default retrier (<c>SenseNet.Tools.DefaultRetrier</c>) to the service collection.
1414
/// </summary>
1515
/// <param name="services">The IServiceCollection instance.</param>
1616
/// <param name="configure">Configure retrier options.</param>
@@ -21,8 +21,9 @@ public static IServiceCollection AddSenseNetRetrier(this IServiceCollection serv
2121

2222
/// <summary>
2323
/// Adds the provided retrier to the service collection.
24+
/// Use this method when the default implementation (<c>SenseNet.Tools.DefaultRetrier</c>) needs to be replaced.
2425
/// </summary>
25-
/// <typeparam name="T">Retrier type.</typeparam>
26+
/// <typeparam name="T">Retrier implementation type.</typeparam>
2627
/// <param name="services">The IServiceCollection instance.</param>
2728
/// <param name="configure">Configure retrier options.</param>
2829
public static IServiceCollection AddSenseNetRetrier<T>(this IServiceCollection services,

0 commit comments

Comments
 (0)