Skip to content

Commit

Permalink
chore: update text content to not be bad copy/paste
Browse files Browse the repository at this point in the history
  • Loading branch information
wjhsf committed Dec 2, 2024
1 parent c0ac093 commit 847d13c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
get bothDecorated should not be called
getter should not be called
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ const sym = Symbol('computed prop');
export default class Wire extends LightningElement {
@wire(adapter, { name: 'symbol' })
get [sym]() {
throw new Error('get bothDecorated should not be called');
throw new Error('getter should not be called');
}

@wire(adapter, { name: 'symbol' })
set [sym](v) {
throw new Error('set bothDecorated should not be called');
throw new Error('setter should not be called');
}

get exposedSymbol() {
Expand Down

0 comments on commit 847d13c

Please sign in to comment.