Skip to content

Commit e6d7e45

Browse files
committed
Fix ValueReference comments
1 parent e117b29 commit e6d7e45

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Runtime/Variables/ValueReference.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ public TValue value
4848
}
4949

5050
/// <summary>
51-
/// Creates a new double reference.
51+
/// Creates a new value reference.
5252
/// </summary>
5353
public ValueReference() {}
5454

5555
/// <summary>
56-
/// Creates a new double reference with the constant value.
56+
/// Creates a new value reference with the constant value.
5757
/// </summary>
5858
/// <param name="value">The constant value to set.</param>
5959
public ValueReference(TValue value)
@@ -63,7 +63,7 @@ public ValueReference(TValue value)
6363
}
6464

6565
/// <summary>
66-
/// Creates a new double reference to the variable value.
66+
/// Creates a new value reference to the variable value.
6767
/// </summary>
6868
/// <param name="variable">The variable to reference.</param>
6969
public ValueReference(TVariable variable)

0 commit comments

Comments
 (0)