From 0f3cc67c02b3ec4ed43337afbe7a98cbfb2d90d9 Mon Sep 17 00:00:00 2001 From: Eduard Voiculescu Date: Thu, 8 Jan 2026 14:48:13 -0500 Subject: [PATCH] Fix typo in properties documentation --- packages/lit-dev-content/site/docs/v3/components/properties.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/lit-dev-content/site/docs/v3/components/properties.md b/packages/lit-dev-content/site/docs/v3/components/properties.md index 7bf8cef49..1f7027d57 100644 --- a/packages/lit-dev-content/site/docs/v3/components/properties.md +++ b/packages/lit-dev-content/site/docs/v3/components/properties.md @@ -569,7 +569,7 @@ Setting `reflect` to true configures a property so that whenever it changes, its Setting `useDefault` to true prevents the property's default value from initially reflecting to its [corresponding attribute](#observed-attributes). All subsequent changes are reflected; and if the attribute is removed, the property is reset to its default value. -This matches web platform behavior for attributes like `id`. The default value of an element's `id` property is `''` (an empty string) and initially it does not have an `id` attribute, but if the `id` property is set (even to an empty string), the appropirate `id` attribute is reflected. If the `id` attribute is removed, the element's `id` property is set back to its initial value of `''`. +This matches web platform behavior for attributes like `id`. The default value of an element's `id` property is `''` (an empty string) and initially it does not have an `id` attribute, but if the `id` property is set (even to an empty string), the appropriate `id` attribute is reflected. If the `id` attribute is removed, the element's `id` property is set back to its initial value of `''`. For example: