Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
remcohaszing committed Apr 30, 2024
1 parent dbe80a1 commit 63f5936
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fixtures/object-recursive-map/input.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default (() => {
$1 = new Map()
return (
($0['map'] = $3['map'] = $2['map'] = $1.set($1, $1).set($2, $2).set($3, $3).set($0, $0)),
($0['resursive'] = $0)
($0['recursive'] = $0)
)
})()

Expand Down
2 changes: 1 addition & 1 deletion fixtures/object-recursive-set/input.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default (() => {
},
$1 = new Set()
return (
($0['set'] = $3['set'] = $2['set'] = $1.add($1).add($2).add($3).add($0)), ($0['resursive'] = $0)
($0['set'] = $3['set'] = $2['set'] = $1.add($1).add($2).add($3).add($0)), ($0['recursive'] = $0)
)
})()

Expand Down
2 changes: 1 addition & 1 deletion fixtures/object-recursive/input.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default (() => {
const $0 = {
name: 'recursive'
}
return ($0['resursive'] = $0)
return ($0['recursive'] = $0)
})()

// -------------------------------------------------------------------------------------------------
Expand Down

0 comments on commit 63f5936

Please sign in to comment.