Skip to content

Commit 9bbdf72

Browse files
authored
Verify spelling fixes pass check-spelling
2 parents 2537881 + bb75d90 commit 9bbdf72

59 files changed

Lines changed: 88 additions & 88 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/changelog-lit.cjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const {
1010
} = require('@changesets/get-github-info');
1111

1212
// Forked from: https://github.com/atlassian/changesets/blob/main/packages/changelog-github/src/index.ts
13-
// Remove the "Thanks!" message, as it's almost always self-congratuatory to our team
13+
// Remove the "Thanks!" message, as it's almost always self-congratulatory to our team
1414
// TODO: add back "Thanks!" for external contributors
1515

1616
const repo = 'lit/lit';
@@ -39,11 +39,11 @@ const changelogFunctions = {
3939
.filter((_) => _)
4040
.join(', ')}]:`;
4141

42-
const updatedDepenenciesList = dependenciesUpdated.map(
42+
const updatedDependenciesList = dependenciesUpdated.map(
4343
(dependency) => ` - ${dependency.name}@${dependency.newVersion}`
4444
);
4545

46-
return [changesetLink, ...updatedDepenenciesList].join('\n');
46+
return [changesetLink, ...updatedDependenciesList].join('\n');
4747
},
4848
getReleaseLine: async (changeset, type, options) => {
4949
let prFromSummary;

.github/ISSUE_TEMPLATE/feature-request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ body:
66
attributes:
77
label: Should this be an RFC?
88
description: |
9-
Lit uses the [Lit RFC Process](https://github.com/lit/rfcs) to propose and discuss substantial chnages. Significant changes should not be opened as feature request issues here, but follow the RFC process at https://github.com/lit/rfcs.
9+
Lit uses the [Lit RFC Process](https://github.com/lit/rfcs) to propose and discuss substantial changes. Significant changes should not be opened as feature request issues here, but follow the RFC process at https://github.com/lit/rfcs.
1010
options:
1111
- label: This is not a substantial change
1212
required: true

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [pull_request]
44

55
jobs:
66
benchmarks:
7-
# Don't run on forks. Benchmarks can't run on forks becuase secrets aren't
7+
# Don't run on forks. Benchmarks can't run on forks because secrets aren't
88
# available, which are needed for posting result comments.
99
if: github.repository == 'lit/lit'
1010

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
- For efficiency, the `css` function now maintains a cache and will use a cached value if available when the same style text is requested.
5555
- Fixed reflecting a property when it is set in a setter of another property that is called because its attribute changed ([#965](https://github.com/Polymer/lit-element/issues/965)).
5656
- Fixed exceptions when parsing attributes from JSON ([#722](https://github.com/Polymer/lit-element/issues/722)).
57-
- Fixed issue with combining `static get properties` on an undefined superclass with `@property` on a subclasss ([#890]https://github.com/Polymer/lit-element/issues/890));
57+
- Fixed issue with combining `static get properties` on an undefined superclass with `@property` on a subclass ([#890]https://github.com/Polymer/lit-element/issues/890));
5858

5959
## `@lit/reactive-element` - 1.0.0
6060

@@ -137,7 +137,7 @@
137137
re-render to the tree. When called with `true`, any such directives'
138138
`reconnected` callback will be called prior to its next `update`/`render`
139139
callbacks. Note that `LitElement` will call this method by default on the
140-
rendered part in its `connectedCallback` and `disconnetedCallback`.
140+
rendered part in its `connectedCallback` and `disconnectedCallback`.
141141
- Added the `static-html` module, a static `html` tag function, a `literal` tag function, and `unsafeStatic()`, which allows template authors to add strings to the
142142
static structure of the template, before it's parsed as HTML. See [Static expressions](https://lit.dev/docs/templates/expressions/#static-expressions) for more details.
143143
- Added `lit-html/directive-helpers.js` module with helpers for creating custom directives. See [Custom directives](https://lit.dev/docs/api/custom-directives/#clearPart) for more details.

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The Lit community is full of bright, thoughtful, helpful, supportive people - it's on all of us to keep it this way! Google and the Lit team want to help foster and support this, and we take any breaches of mutual respect very seriously. Below is the community code of conduct, which applies to our Github repos and organizations, mailing lists, Slack channels, and any other Lit-supported communication group.
1+
The Lit community is full of bright, thoughtful, helpful, supportive people - it's on all of us to keep it this way! Google and the Lit team want to help foster and support this, and we take any breaches of mutual respect very seriously. Below is the community code of conduct, which applies to our GitHub repos and organizations, mailing lists, Slack channels, and any other Lit-supported communication group.
22

33
### Be excellent to each other.
44

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ lit-html 1.x source is available on the [`lit-html-1.x`](https://github.com/lit/
5858
- [`lit-starter-ts`](./packages/lit-starter-ts) ([template
5959
repo](https://github.com/lit/lit-element-starter-ts)) - A starter repo for building reusable components using Lit in TypeScript.
6060
- [`lit-starter-js`](./packages/lit-starter-js) ([template
61-
repo](https://github.com/lit/lit-element-starter-js)) - A starter repo for building reusable components using Lit in Javascript.
61+
repo](https://github.com/lit/lit-element-starter-js)) - A starter repo for building reusable components using Lit in JavaScript.
6262
- Internal packages (not published to npm)
6363
- [`tests`](./packages/tests) - Test infrastructure for the monorepo.
6464
- [`benchmarks`](./packages/benchmarks) - Benchmarks for testing various libraries in the monorepo.

packages/benchmarks/lit-html/repeat/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const defaults = {
4141
from: 0,
4242
// 'to' item index used in operations (add, move, swap)
4343
to: 1000,
44-
// When true, supported operations are mirrored symetrically on the other side
44+
// When true, supported operations are mirrored symmetrically on the other side
4545
// of the list
4646
mirror: false,
4747
// Number of times to loop, repeating the same operation on the list

packages/labs/analyzer/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
- [#2804](https://github.com/lit/lit/pull/2804) [`e0517ccf`](https://github.com/lit/lit/commit/e0517ccf79d983a8d6ec53969f29e130830fe3e8) - Read property options from decorated properties
3434

35-
- [#2896](https://github.com/lit/lit/pull/2896) [`3bd330f3`](https://github.com/lit/lit/commit/3bd330f3db4c2f618181b8602563db3ab879f33d) - Add utilties for getting LitElement declarations
35+
- [#2896](https://github.com/lit/lit/pull/2896) [`3bd330f3`](https://github.com/lit/lit/commit/3bd330f3db4c2f618181b8602563db3ab879f33d) - Add utilities for getting LitElement declarations
3636

3737
- [#2812](https://github.com/lit/lit/pull/2812) [`93d671fe`](https://github.com/lit/lit/commit/93d671feab82688a79fc60ba22cf204fa4ca02ec) - Read events from class JSDoc @fires tags
3838

@@ -42,7 +42,7 @@
4242

4343
- [#2796](https://github.com/lit/lit/pull/2796) [`a4253b83`](https://github.com/lit/lit/commit/a4253b8396bbfa28bce8cb1c86fd59959474d7dd) - Initial support for finding LitElement declarations
4444

45-
- [#2798](https://github.com/lit/lit/pull/2798) [`a95740dc`](https://github.com/lit/lit/commit/a95740dc27d06ab24828b993e84452cd306feecb) - Refactor LitElement-specific utilties into separate module
45+
- [#2798](https://github.com/lit/lit/pull/2798) [`a95740dc`](https://github.com/lit/lit/commit/a95740dc27d06ab24828b993e84452cd306feecb) - Refactor LitElement-specific utilities into separate module
4646

4747
- [#2789](https://github.com/lit/lit/pull/2789) [`07212750`](https://github.com/lit/lit/commit/072127503d3dc40fe7ab8add93bebde933b6bd8b) - Add minimal class declaration gathering
4848

packages/labs/analyzer/src/lib/analyze-package.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {Analyzer} from './analyzer.js';
1414
export const createPackageAnalyzer = (packagePath: AbsolutePath) => {
1515
// This logic accepts either a path to folder containing a tsconfig.json
1616
// directly inside it or a path to a specific tsconfig file. If no tsconfig
17-
// file is found, we fallback to creating a Javascript program.
17+
// file is found, we fallback to creating a JavaScript program.
1818
const isDirectory = ts.sys.directoryExists(packagePath);
1919
const configFileName = isDirectory
2020
? path.join(packagePath, 'tsconfig.json')

packages/labs/analyzer/src/lib/model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export class Package extends PackageInfo {
5151

5252
/**
5353
* Returns a list of modules in this package containing LitElement
54-
* declarations, along with the filtered list of LitElementDeclarartions.
54+
* declarations, along with the filtered list of LitElementDeclarations.
5555
*/
5656
getLitElementModules() {
5757
const modules: {module: Module; declarations: LitElementDeclaration[]}[] =

0 commit comments

Comments
 (0)