Skip to content

Commit 4ee302d

Browse files
committed
Fixed typo
1 parent 8a5774e commit 4ee302d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Microsoft.Toolkit.Uwp.UI/Extensions/ListViewBase/ListViewExtensions.SmoothScrollIntoView.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ public static async Task SmoothScrollIntoViewWithItemAsync(this ListViewBase lis
201201
/// <param name="disableAnimation">if set to <c>true</c> disable animation.</param>
202202
private static async Task ChangeViewAsync(this ScrollViewer scrollViewer, double? horizontalOffset, double? verticalOffset, float? zoomFactor, bool disableAnimation)
203203
{
204-
// MUST check this and return immediately, otherwise this async task will never completes because ViewChanged event won't triggered
204+
// MUST check this and return immediately, otherwise this async task will never complete because ViewChanged event won't get triggered
205205
if (horizontalOffset == scrollViewer.HorizontalOffset && verticalOffset == scrollViewer.VerticalOffset)
206206
{
207207
return;

0 commit comments

Comments
 (0)