Skip to content

Commit 3dadf02

Browse files
author
Arthur Evans
authored
Fix typo
1 parent 6ab9ecc commit 3dadf02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/_guide/properties.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ A property change can trigger an asynchronous update cycle, which causes the com
204204
When a property changes, the following sequence occurs:
205205

206206
1. The property's setter is called.
207-
1. The setter calls the property's `hasChanged` function. The `hasChanged` function takes the property's old and new values, and returns true if the change should trigger an update. (The default `hasChanged` uses a strict inequality test (`oldValue !=== newValue`) to determine if the property has changed.)
207+
1. The setter calls the property's `hasChanged` function. The `hasChanged` function takes the property's old and new values, and returns true if the change should trigger an update. (The default `hasChanged` uses a strict inequality test (`oldValue !== newValue`) to determine if the property has changed.)
208208
1. If `hasChanged` returns true, the setter calls `requestUpdate` to schedule an update. The update itself happens asynchronously, so if several properties are updated at once, they only trigger a single update.
209209
1. The component's `update` method is called, reflecting changed properties to attributes and re-rendering the component's templates.
210210

0 commit comments

Comments
 (0)