Skip to content

Commit 0d13e75

Browse files
Fixes a doc comment
1 parent 6eaee0b commit 0d13e75

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

TestStack.Dossier/TestDataBuilder.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ public virtual TBuilder Set<TValue>(Expression<Func<TObject, TValue>> property,
127127
/// <typeparam name="TValue">The type of the property</typeparam>
128128
/// <param name="property">A lambda expression specifying the property to record a value for</param>
129129
/// <param name="factory">A method which produces instances of {TValue} for the property.</param>
130+
/// <returns>The builder so that other method calls can be chained</returns>
130131
public virtual TBuilder Set<TValue>(Expression<Func<TObject, TValue>> property, Func<TValue> factory)
131132
{
132133
_properties[Reflector.GetPropertyNameFor(property)] = () => factory() as object;

0 commit comments

Comments
 (0)