From 2b5502a2c8b1c59390ff3be5b769f5cb6eeea142 Mon Sep 17 00:00:00 2001 From: Peter Kampjes <67612358+peachesontour@users.noreply.github.com> Date: Tue, 1 Sep 2020 09:02:40 -0300 Subject: [PATCH] Update 2-ui/99-ui-misc/01-mutation-observer/article.md Co-authored-by: Muhammed Zakir <8190126+MuhammedZakir@users.noreply.github.com> --- 2-ui/99-ui-misc/01-mutation-observer/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/99-ui-misc/01-mutation-observer/article.md b/2-ui/99-ui-misc/01-mutation-observer/article.md index d2a8eac0..4ec1cd4a 100644 --- a/2-ui/99-ui-misc/01-mutation-observer/article.md +++ b/2-ui/99-ui-misc/01-mutation-observer/article.md @@ -236,7 +236,7 @@ There's a method to stop observing the node: - `observer.disconnect()` -- stops the observation. -When we stop the observing, it might be possible that some changes were not yet processed by the observer. +When we stop the observing, it might be possible that some changes were not yet processed by the observer. In such cases, we use - `observer.takeRecords()` -- gets a list of unprocessed mutation records, those that happened, but the callback has not handled them.