Skip to content

Commit ca0a674

Browse files
Merge pull request #2814 from bsidhom:lit-package
PiperOrigin-RevId: 404062629
2 parents 4619ea5 + b4f963e commit ca0a674

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/base/aria-property.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function tsDecorator(
3030
(prototype.constructor as unknown as ReactiveElementInternals);
3131
if (!descriptor) {
3232
/**
33-
* lit-element uses internal properties with two leading underscores to
33+
* lit uses internal properties with two leading underscores to
3434
* provide storage for accessors
3535
*/
3636
const litInternalPropertyKey = `__${name}`;

packages/radio/mwc-radio-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ export class RadioBase extends FormElement {
165165
super.connectedCallback();
166166
// Note that we must defer creating the selection controller until the
167167
// element has connected, because selection controllers are keyed by the
168-
// radio's shadow root. For example, if we're stamping in a lit-html map
168+
// radio's shadow root. For example, if we're stamping in a lit map
169169
// or repeat, then we'll be constructed before we're added to a root node.
170170
//
171171
// Also note if we aren't using native shadow DOM, we still need a

packages/snackbar/accessible-snackbar-label-directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class AccessibleSnackbarLabel extends AsyncDirective {
9595
// all browsers and screen readers:
9696
//
9797
// 1. `textContent = ''` is required for IE11 + JAWS
98-
// 2. the lit-html render of `' '` is required for Chrome + JAWS and
98+
// 2. the lit render of `' '` is required for Chrome + JAWS and
9999
// NVDA
100100
//
101101
// All other browser/screen reader combinations support both methods.

0 commit comments

Comments
 (0)