Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldxdonald authored and qq15725 committed Mar 11, 2024
1 parent 0eee4ec commit d238dca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export interface InternalContext<T extends Node> {
workers: Worker[]

/**
* The set of `font-family` values for all cloend elements
* The set of `font-family` values for all cloned elements
*/
fontFamilies: Set<string>

Expand Down
4 changes: 2 additions & 2 deletions src/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,12 +189,12 @@ export interface Options {
/**
* Triggered after a node is cloned
*/
onCloneNode?: ((cloend: Node) => void) | null
onCloneNode?: ((cloned: Node) => void) | null

/**
* Triggered after a node is embed
*/
onEmbedNode?: ((cloend: Node) => void) | null
onEmbedNode?: ((cloned: Node) => void) | null

/**
* Triggered after a ForeignObjectSvg is created
Expand Down

0 comments on commit d238dca

Please sign in to comment.