Skip to content
This repository was archived by the owner on Aug 18, 2025. It is now read-only.

Commit 85a51c4

Browse files
committed
updating comment typo
1 parent 4d2292c commit 85a51c4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/view/use-announcer/use-announcer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export default function useAnnouncer(contextId: ContextId): Announce {
4141
// unmounting after a timeout to let any announcements
4242
// during a mount be published
4343
setTimeout(function remove() {
44-
// checking if element exists as the body might have been changed by thinks like 'turbolinks'
44+
// checking if element exists as the body might have been changed by things like 'turbolinks'
4545
const body: HTMLBodyElement = getBodyElement();
4646
if (body.contains(el)) {
4747
body.removeChild(el);

src/view/use-hidden-text-element/use-hidden-text-element.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export default function useHiddenTextElement({
4646
getBodyElement().appendChild(el);
4747

4848
return function unmount() {
49-
// checking if element exists as the body might have been changed by thinks like 'turbolinks'
49+
// checking if element exists as the body might have been changed by things like 'turbolinks'
5050
const body: HTMLBodyElement = getBodyElement();
5151
if (body.contains(el)) {
5252
body.removeChild(el);

0 commit comments

Comments
 (0)