From 29cb0ce4eb08a0ee2645a0962fa0f9c285255c58 Mon Sep 17 00:00:00 2001 From: Julien Pradelle Date: Fri, 22 May 2026 15:13:21 +0200 Subject: [PATCH] Fix typo in upgrade.md for queryAssignedNodes --- packages/lit-dev-content/site/docs/v3/releases/upgrade.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/lit-dev-content/site/docs/v3/releases/upgrade.md b/packages/lit-dev-content/site/docs/v3/releases/upgrade.md index 9d491a2a7..b95eb2d18 100644 --- a/packages/lit-dev-content/site/docs/v3/releases/upgrade.md +++ b/packages/lit-dev-content/site/docs/v3/releases/upgrade.md @@ -216,7 +216,7 @@ Install Babel 7.23 or later, and [`@babel/plugin-proposal-decorators`](https://b Standard decorators are not allowed to change the _kind_ of class member they decorate. Decorators that need to create getters and setters must be applied to existing getters and setters. To make this more ergonomic, the decorators standard adds the `accessor` keyword which creates "auto accessors" when applied to a class field. Auto accessors look and act much like class fields, but create accessors on the prototype backed by private storage. -The `@property()`, `@state()`, `@query()`, `@queryAll()`, `@queryAssignedElements()` and `@queryAssignedNode()` decorators require the `accessor` keyword. +The `@property()`, `@state()`, `@query()`, `@queryAll()`, `@queryAssignedElements()` and `@queryAssignedNodes()` decorators require the `accessor` keyword. Example: