Skip to content

Commit

Permalink
fix doc typos, #1666
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelzoom committed Oct 28, 2024
1 parent 4abd550 commit ff82af7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/accessibility/pdom/ParallelDOM.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<T extends ParallelDOMSelfOptions> = StrictOmit<T, keyof ParallelDOMSelfOptions>
& PickOptional<ParallelDOMSelfOptions, 'accessibleName' | 'helpText' | 'focusable' | 'pdomVisible'>;

Expand Down

0 comments on commit ff82af7

Please sign in to comment.