From ff82af7ce8c3dbff300b9fe4e24243362afd3dd3 Mon Sep 17 00:00:00 2001 From: pixelzoom Date: Mon, 28 Oct 2024 16:39:47 -0600 Subject: [PATCH] fix doc typos, https://github.com/phetsims/scenery/issues/1666 --- js/accessibility/pdom/ParallelDOM.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/accessibility/pdom/ParallelDOM.ts b/js/accessibility/pdom/ParallelDOM.ts index bd6ebf39d..1efd94224 100644 --- a/js/accessibility/pdom/ParallelDOM.ts +++ b/js/accessibility/pdom/ParallelDOM.ts @@ -314,8 +314,8 @@ type ParallelDOMSelfOptions = { export type ParallelDOMOptions = ParallelDOMSelfOptions & PhetioObjectOptions; // Removes all options from T that are in ParallelDOMSelfOptions, except for the most fundamental ones. -// This is uefeful for creating a ParallelDOM subclass that only exposes these high level options while implementing accessibility -// with the lower level API. +// This is useful for creating a ParallelDOM subclass that only exposes these high-level options while implementing +// accessibility with the lower-level API. export type TrimmedParallelDOMOptions = StrictOmit & PickOptional;