Skip to content

Commit cdca10a

Browse files
authored
fix: the t and s in typescript should be capitalized (#2851)
Signed-off-by: Case Wylie <[email protected]>
1 parent 7fdf920 commit cdca10a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ See [actions](docs/actions/README.md) for more details.
177177
It provides optional static typing and a rich type system, allowing developers to write more robust code.
178178
TypeScript is transpiled to JavaScript, enabling it to run in any environment that supports JavaScript.
179179
Pepr allows you to use JavaScript or TypeScript to write capabilities, but TypeScript is recommended for its type safety and rich type system.
180-
See the [Typescript docs](https://www.typescriptlang.org/docs/handbook/typescript-from-scratch.html) to learn more.
180+
See the [TypeScript docs](https://www.typescriptlang.org/docs/handbook/typescript-from-scratch.html) to learn more.
181181

182182
## Community
183183

src/cli/crd/create/createCRDscaffold.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ describe("generateCRDScaffold", () => {
1919
describe("when generating a CRD scaffold with valid inputs", () => {
2020
let result: string;
2121

22+
// Create the scaffold before each test
2223
beforeEach(() => {
2324
result = createCRDscaffold(group, version, kind, data);
2425
});

0 commit comments

Comments
 (0)