From 87ea54f62905c3df9666adf1b8b73ad861d7c637 Mon Sep 17 00:00:00 2001 From: Sarah Zakarias Date: Mon, 7 Oct 2024 09:08:31 +0000 Subject: [PATCH] Fix small typo --- app/lib/shared/cached_value.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/shared/cached_value.dart b/app/lib/shared/cached_value.dart index 836e13bf23..94cf473141 100644 --- a/app/lib/shared/cached_value.dart +++ b/app/lib/shared/cached_value.dart @@ -25,7 +25,7 @@ typedef UpdateFn = Future Function(); /// a failure, and won't be logged. However, `isAvailable` will return /// true only if the value is non-null. /// -/// The `updateFn` function should do have its own retry logic. +/// The `updateFn` function should have its own retry logic. /// /// - The default `timeout` value is half of the `interval`. ///