Skip to content

Commit

Permalink
Fixed documentation of data extensions (#4899)
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalSenn authored Mar 28, 2022
1 parent aaecf40 commit 29aa57b
Showing 1 changed file with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ public static IRequestExecutorBuilder AddFiltering<TConvention>(
builder.ConfigureSchema(s => s.AddFiltering<TConvention>(name));

/// <summary>
/// Adds filtering support.
/// Adds sorting support.
/// </summary>
/// <param name="builder">
/// The <see cref="IRequestExecutorBuilder"/>.
/// </param>
/// <param name="name">
/// The filter convention name.
/// The sort convention name.
/// </param>
/// <returns>
/// Returns the <see cref="IRequestExecutorBuilder"/>.
Expand All @@ -90,7 +90,7 @@ public static IRequestExecutorBuilder AddSorting(
builder.ConfigureSchema(s => s.AddSorting(name));

/// <summary>
/// Adds filtering support.
/// Adds sorting support.
/// </summary>
/// <param name="builder">
/// The <see cref="IRequestExecutorBuilder"/>.
Expand All @@ -99,7 +99,7 @@ public static IRequestExecutorBuilder AddSorting(
/// Configures the convention.
/// </param>
/// <param name="name">
/// The filter convention name.
/// The sort convention name.
/// </param>
/// <returns>
/// Returns the <see cref="IRequestExecutorBuilder"/>.
Expand All @@ -111,16 +111,16 @@ public static IRequestExecutorBuilder AddSorting(
builder.ConfigureSchema(s => s.AddSorting(configure, name));

/// <summary>
/// Adds filtering support.
/// Adds sorting support.
/// </summary>
/// <param name="builder">
/// The <see cref="IRequestExecutorBuilder"/>.
/// </param>
/// <param name="name">
/// The filter convention name.
/// The sort convention name.
/// </param>
/// <typeparam name="TConvention">
/// The concrete filter convention type.
/// The concrete sort convention type.
/// </typeparam>
/// <returns>
/// Returns the <see cref="IRequestExecutorBuilder"/>.
Expand All @@ -132,13 +132,13 @@ public static IRequestExecutorBuilder AddSorting<TConvention>(
builder.ConfigureSchema(s => s.AddSorting<TConvention>(name));

/// <summary>
/// Adds filtering support.
/// Adds projections support.
/// </summary>
/// <param name="builder">
/// The <see cref="IRequestExecutorBuilder"/>.
/// </param>
/// <param name="name">
/// The filter convention name.
/// The projection convention name.
/// </param>
/// <returns>
/// Returns the <see cref="IRequestExecutorBuilder"/>.
Expand All @@ -149,7 +149,7 @@ public static IRequestExecutorBuilder AddProjections(
AddProjections(builder, x => x.AddDefaults(), name);

/// <summary>
/// Adds filtering support.
/// Adds projection support.
/// </summary>
/// <param name="builder">
/// The <see cref="IRequestExecutorBuilder"/>.
Expand All @@ -158,7 +158,7 @@ public static IRequestExecutorBuilder AddProjections(
/// Configures the convention.
/// </param>
/// <param name="name">
/// The filter convention name.
/// The projection convention name.
/// </param>
/// <returns>
/// Returns the <see cref="IRequestExecutorBuilder"/>.
Expand All @@ -174,16 +174,16 @@ public static IRequestExecutorBuilder AddProjections(
name));

/// <summary>
/// Adds filtering support.
/// Adds projection support.
/// </summary>
/// <param name="builder">
/// The <see cref="IRequestExecutorBuilder"/>.
/// </param>
/// <param name="name">
/// The filter convention name.
/// The projection convention name.
/// </param>
/// <typeparam name="TConvention">
/// The concrete filter convention type.
/// The concrete projection convention type.
/// </typeparam>
/// <returns>
/// Returns the <see cref="IRequestExecutorBuilder"/>.
Expand Down

0 comments on commit 29aa57b

Please sign in to comment.