Skip to content

Commit 606460e

Browse files
committed
Added xmldoc comments
1 parent 772230f commit 606460e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

NTestDataBuilder/DataBuilderExtensions.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ public static class DataBuilderExtensions
1313
/// Builds a list of entities given an NBuilder list expression of data builders.
1414
/// </summary>
1515
/// <typeparam name="TBuilder">The type of the builder being built using NBuilder</typeparam>
16-
/// <typeparam name="TEntity"></typeparam>
17-
/// <param name="builderList"></param>
18-
/// <returns></returns>
16+
/// <typeparam name="TEntity">The type of object being generated</typeparam>
17+
/// <param name="builderList">The NBuilder list of builders</param>
18+
/// <returns>The built list of objects</returns>
1919
public static IList<TEntity> BuildDataList<TEntity, TBuilder>(this IOperable<TBuilder> builderList)
2020
where TBuilder : IDataBuilder<TEntity>
2121
where TEntity : class
@@ -24,12 +24,12 @@ public static IList<TEntity> BuildDataList<TEntity, TBuilder>(this IOperable<TBu
2424
}
2525

2626
/// <summary>
27-
///
27+
/// Builds a list of entities given an NBuilder list expression of data builders.
2828
/// </summary>
29-
/// <typeparam name="TBuilder"></typeparam>
30-
/// <typeparam name="TEntity"></typeparam>
31-
/// <param name="builderList"></param>
32-
/// <returns></returns>
29+
/// <typeparam name="TBuilder">The type of the builder being built using NBuilder</typeparam>
30+
/// <typeparam name="TEntity">The type of object being generated</typeparam>
31+
/// <param name="builderList">The NBuilder list of builders</param>
32+
/// <returns>The built list of objects</returns>
3333
public static IList<TEntity> BuildDataList<TEntity, TBuilder>(this IListBuilder<TBuilder> builderList)
3434
where TBuilder : IDataBuilder<TEntity>
3535
where TEntity : class

0 commit comments

Comments
 (0)