Skip to content

Commit df2ea2d

Browse files
authored
Merge branch 'main' into feat/json-parse-with-source
2 parents b24a72a + 0105bbb commit df2ea2d

5 files changed

Lines changed: 8 additions & 3 deletions

File tree

CLAUDE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Read AGENTS.md before proceeding.

CONTRIBUTING.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88

99
It is acceptable to use AI tools to assist in developing PRs. However, we ask that you disclose this in the PR description. If your PR appears AI-authored and you do not include this disclosure, your PR will be closed without review. Repeated violation of this will be considered disruptive conduct, which may result in being blocked from interaction with the organization.
1010

11+
### Automated Comments
12+
13+
This repo has already been configured with the appropriate level of automation for the project. Automated comments (e.g. posting auto-generated PR or issue "summaries") are not allowed and will result in an immediate block for inauthentic activity.
14+
1115
# Instructions for Logging Issues
1216

1317
## 1. Read the FAQ

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ npm install -D typescript@next
3636
* Serious regressions from 5.9 (these must *seriously* impact a *large* proportion of users)
3737

3838
Most bug fixes should be submitted to the [typescript-go](https://github.com/microsoft/TypeScript-go) repository.
39-
Feature additions and behavorial changes are currently on pause until TypeScript 7.0 is completed.
39+
Feature additions and behavioral changes are currently on pause until TypeScript 7.0 is completed.
4040

4141
There are many ways to [contribute](https://github.com/microsoft/TypeScript/blob/main/CONTRIBUTING.md) to TypeScript.
4242
* [Submit bugs](https://github.com/microsoft/TypeScript/issues) and help us verify fixes as they are checked in.

src/lib/es2015.collection.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ interface Set<T> {
9494
*/
9595
has(value: T): boolean;
9696
/**
97-
* @returns the number of (unique) elements in Set.
97+
* @returns the number of (unique) elements in the Set.
9898
*/
9999
readonly size: number;
100100
}

src/lib/es2015.core.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ interface Math {
9494
imul(x: number, y: number): number;
9595

9696
/**
97-
* Returns the sign of the x, indicating whether x is positive, negative or zero.
97+
* Returns the sign of x, indicating whether x is positive, negative, or zero.
9898
* @param x The numeric expression to test
9999
*/
100100
sign(x: number): number;

0 commit comments

Comments
 (0)