From a3712e361bd82547b6f3cd077d16f9deac8aa111 Mon Sep 17 00:00:00 2001 From: Jon Tippens Date: Thu, 25 Jul 2019 11:48:22 -0700 Subject: [PATCH] Fix minor typos (#36893) --- packages/flutter/lib/src/widgets/transitions.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/flutter/lib/src/widgets/transitions.dart b/packages/flutter/lib/src/widgets/transitions.dart index 86e2513de6..9f799c8ea4 100644 --- a/packages/flutter/lib/src/widgets/transitions.dart +++ b/packages/flutter/lib/src/widgets/transitions.dart @@ -150,7 +150,7 @@ class _AnimatedState extends State { /// Animates the position of a widget relative to its normal position. /// -/// The translation is expressed as a [Offset] scaled to the child's size. For +/// The translation is expressed as an [Offset] scaled to the child's size. For /// example, an [Offset] with a `dx` of 0.25 will result in a horizontal /// translation of one quarter the width of the child. /// @@ -160,7 +160,7 @@ class _AnimatedState extends State { /// direction, so in right-to-left text, positive x offsets move towards the /// left, and in left-to-right text, positive x offsets move towards the right. /// -/// Here's an illustration of the [SlideTransition] widget, with it's [position] +/// Here's an illustration of the [SlideTransition] widget, with its [position] /// animated by a [CurvedAnimation] set to [Curves.elasticIn]: /// {@animation 300 378 https://flutter.github.io/assets-for-api-docs/assets/widgets/slide_transition.mp4} ///