From d767ca078414e5af59280809531581a94898b413 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Sat, 5 Mar 2022 12:39:30 -0600 Subject: [PATCH] notifications/sagas: fix rename in comment This was missed when actions were refactored to remove ActionType enums. --- src/notifications/sagas.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/notifications/sagas.ts b/src/notifications/sagas.ts index 951f4649..d52909e9 100644 --- a/src/notifications/sagas.ts +++ b/src/notifications/sagas.ts @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright (c) 2020-2022 The Pybricks Authors +// Copyright (c) 2020 - 2022 The Pybricks Authors // Saga for managing notifications (toasts) @@ -363,7 +363,7 @@ function* showServiceWorkerUpdate( function* showNoUpdateInfo(action: ReturnType): Generator { if (action.updateFound) { - // this will be handled by ServiceWorkerActionType.DidUpdate action + // this will be handled by didUpdate action return; }