From ec27e04582a2a336bd000cef48520e9a192722fe Mon Sep 17 00:00:00 2001 From: Ivan Date: Wed, 6 Mar 2019 15:22:02 -0800 Subject: [PATCH] fix missing variable name (#28944) --- packages/flutter/lib/src/animation/tween_sequence.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter/lib/src/animation/tween_sequence.dart b/packages/flutter/lib/src/animation/tween_sequence.dart index eb836d752e0..dd78f8efb6e 100644 --- a/packages/flutter/lib/src/animation/tween_sequence.dart +++ b/packages/flutter/lib/src/animation/tween_sequence.dart @@ -20,7 +20,7 @@ import 'tween.dart'; /// 10.0 for the final 40%: /// /// ```dart -/// final Animation = TweenSequence( +/// final Animation animation = TweenSequence( /// >[ /// TweenSequenceItem( /// tween: Tween(begin: 5.0, end: 10.0)