Skip to content

Commit

Permalink
chore: format file
Browse files Browse the repository at this point in the history
  • Loading branch information
Westbrook committed Apr 23, 2024
1 parent 849c1f8 commit 10f7ff2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/guides/knowledge/lit-element/rendering.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ In the case of direct values, equality is determined by directly comparing the v
But in the case of reference types, the thing that is compared is the _reference_ to the object, not its contents.

```js
const o = { foo: 'bar' }
const p = { foo: 'bar' }
o === p // false
const o = { foo: 'bar' };
const p = { foo: 'bar' };
o === p; // false
```

### LitElement's Property System
Expand Down

0 comments on commit 10f7ff2

Please sign in to comment.