diff --git a/Microsoft.Toolkit.Uwp.UI.Animations/Builders/AnimationBuilder.cs b/Microsoft.Toolkit.Uwp.UI.Animations/Builders/AnimationBuilder.cs index fad283ae850..792e8b0af2c 100644 --- a/Microsoft.Toolkit.Uwp.UI.Animations/Builders/AnimationBuilder.cs +++ b/Microsoft.Toolkit.Uwp.UI.Animations/Builders/AnimationBuilder.cs @@ -37,9 +37,9 @@ private AnimationBuilder() /// /// For instance: /// - /// AnimationBuilder.Create()
- /// .Opacity(from: 0, to: 1)
- /// .Translation(Axis.X, from: -40, to: 0)
+ /// AnimationBuilder.Create() + /// .Opacity(from: 0, to: 1) + /// .Translation(Axis.X, from: -40, to: 0) /// .Start(MyButton); ///
/// @@ -48,9 +48,9 @@ private AnimationBuilder() /// /// For instance: /// - /// var animation = AnimationBuilder.Create().Opacity(0, 1).Size(1.2, 1);
- ///
- /// animation.Start(MyButton);
+ /// var animation = AnimationBuilder.Create().Opacity(0, 1).Size(1.2, 1); + /// + /// animation.Start(MyButton); /// animation.Start(MyGrid); ///
/// Alternatively, the type can be used to configure animations directly from XAML.