From 6c41398a70d5c7c32e6b32b2eaca2f18f2491c9c Mon Sep 17 00:00:00 2001 From: SeongYun Kim Date: Tue, 6 Apr 2021 03:59:01 +0900 Subject: [PATCH] Fix typo in scroll_activity.dart (#79771) --- AUTHORS | 1 + packages/flutter/lib/src/widgets/scroll_activity.dart | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index 5816fad945f..074ee0d2f6f 100644 --- a/AUTHORS +++ b/AUTHORS @@ -75,3 +75,4 @@ vimerzhao Pedro Massango Hidenori Matsubayashi Perqin Xie +Seongyun Kim diff --git a/packages/flutter/lib/src/widgets/scroll_activity.dart b/packages/flutter/lib/src/widgets/scroll_activity.dart index 6f86351e525..60d764699db 100644 --- a/packages/flutter/lib/src/widgets/scroll_activity.dart +++ b/packages/flutter/lib/src/widgets/scroll_activity.dart @@ -278,7 +278,7 @@ class ScrollDragController implements Drag { /// the end of a drag. Expressed as a factor. For example with a /// [carriedVelocity] of 2000, we will need a velocity of at least 1000 to /// apply the [carriedVelocity] as well. If the velocity does not meet the - /// threshold the the [carriedVelocity] is lost. Decided by fair eyeballing + /// threshold, the [carriedVelocity] is lost. Decided by fair eyeballing /// with the scroll_overlay platform test. static const double momentumRetainVelocityThresholdFactor = 0.5;