diff --git a/ReactNativeClient/lib/AsyncActionQueue.ts b/ReactNativeClient/lib/AsyncActionQueue.ts index e2d8937d0f..84866ae9dd 100644 --- a/ReactNativeClient/lib/AsyncActionQueue.ts +++ b/ReactNativeClient/lib/AsyncActionQueue.ts @@ -9,7 +9,7 @@ export interface QueueItem { // The AsyncActionQueue can be used to debounce asynchronous actions, to make sure // they run in the right order, and also to ensure that if multiple actions are emitted -// only the last one are executed. This is particularly useful to save data in the background. +// only the last one is executed. This is particularly useful to save data in the background. // Each queue should be associated with a specific entity (a note, resource, etc.) export default class AsyncActionQueue {