Skip to content

Commit 62c4934

Browse files
authored
Merge pull request #4392 from Arlodotexe/animationsbuilder-docs-example-fix
Fixed broken example code in AnimationBuilder.Create docs
2 parents e4d65a0 + f350f89 commit 62c4934

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Microsoft.Toolkit.Uwp.UI.Animations/Builders/AnimationBuilder.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ private AnimationBuilder()
3737
/// </para>
3838
/// For instance:
3939
/// <code>
40-
/// AnimationBuilder.Create()<br/>
41-
/// .Opacity(from: 0, to: 1)<br/>
42-
/// .Translation(Axis.X, from: -40, to: 0)<br/>
40+
/// AnimationBuilder.Create()
41+
/// .Opacity(from: 0, to: 1)
42+
/// .Translation(Axis.X, from: -40, to: 0)
4343
/// .Start(MyButton);
4444
/// </code>
4545
/// <para>
@@ -48,9 +48,9 @@ private AnimationBuilder()
4848
/// </para>
4949
/// For instance:
5050
/// <code>
51-
/// var animation = AnimationBuilder.Create().Opacity(0, 1).Size(1.2, 1);<br/>
52-
/// <br/>
53-
/// animation.Start(MyButton);<br/>
51+
/// var animation = AnimationBuilder.Create().Opacity(0, 1).Size(1.2, 1);
52+
///
53+
/// animation.Start(MyButton);
5454
/// animation.Start(MyGrid);
5555
/// </code>
5656
/// Alternatively, the <see cref="AnimationSet"/> type can be used to configure animations directly from XAML.

0 commit comments

Comments
 (0)