Skip to content

Commit 4b2af53

Browse files
authored
Update README.md
1 parent f9dec17 commit 4b2af53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Install-Package TweenSharp
1414
var handler = new TweenHandler();
1515

1616
// Create a tween
17-
var point = new Point(0, 0); // Point is a class!
17+
var point = new Point(0, 0); // Point is a class (structs will not work)
1818
var tween = point.Tween(x => x.X) // select which property to tween
1919
.To(10) // target value
2020
.In(1.0); // tween time in seconds

0 commit comments

Comments
 (0)