Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo fixes and better wording in README.md #6

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ _For detailed status of this proposal see [TODO](#todo), below._
> NOTE: See https://github.com/rbuckton/proposal-regexp-features for an overview of
> how this proposal fits into other possible future features for Regular Expressions.

The `\R` escape sequence matches the various sets of code points that match a unicode line terminator, which can be difficult to write correctly.
The `\R` escape sequence matches the various sets of code points that match a Unicode line terminator, which can be difficult to write correctly.

<!--#endregion:motivations-->

Expand All @@ -49,7 +49,7 @@ See https://rbuckton.github.io/regexp-features/features/line-endings-escape.html

> NOTE: Requires the `u` or `v` flags, as `\R` is currently just an escape for `R` without the `u` flag.

> NOTE: Not supported inside of a character class.
> NOTE: `\R` is not supported inside a character class.


<!--#endregion:syntax-->
Expand All @@ -72,7 +72,7 @@ See https://rbuckton.github.io/regexp-features/features/line-endings-escape.html
# Examples

```js
// split lines regardless of line termiantor style
// split lines regardless of line terminator style
const lines = fs.readFileSync("file.txt", "utf8").split(/\R/ug);
```

Expand Down Expand Up @@ -129,7 +129,7 @@ The following is a high-level list of tasks to progress through each stage of th
### Stage 4 Entrance Criteria

* [ ] [Test262](https://github.com/tc39/test262) acceptance tests have been written for mainline usage scenarios and [merged][Test262PullRequest].
* [ ] Two compatible implementations which pass the acceptance tests: [\[1\]][Implementation1], [\[2\]][Implementation2].
* [ ] Two compatible implementations that pass the acceptance tests: [\[1\]][Implementation1], [\[2\]][Implementation2].
* [ ] A [pull request][Ecma262PullRequest] has been sent to tc39/ecma262 with the integrated spec text.
* [ ] The ECMAScript editor has signed off on the [pull request][Ecma262PullRequest].
<!--#endregion:todo-->
Expand Down