Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Fix minor grammatical errors#3410

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
kristenmazza wants to merge2 commits intojavascript-tutorial:master
base:master
Choose a base branch
Loading
fromkristenmazza:fix-grammar-errors

Conversation

kristenmazza
Copy link

@kristenmazzakristenmazza commentedMar 19, 2023
edited
Loading

  • Fixes grammatical errors including word choice and punctuation

@CLAassistant
Copy link

CLAassistant commentedMar 19, 2023
edited
Loading

CLA assistant check
All committers have signed the CLA.

@@ -5,7 +5,7 @@ There are two kinds of object properties.

The first kind is *data properties*. We already know how to work with them. All properties that we've been using until now were data properties.

The second type of property is something new. It's an *accessor property*. They are essentially functions that execute on getting and setting a value, but look like regular properties to an external code.
The second type of property is something new. It's an *accessor property*. They are essentially functions that execute on getting and setting a value but look like regular properties to an external code.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

disagree, clearer with comma

@@ -241,4 +241,4 @@ alert( john.birthday ); // birthday is available
alert( john.age ); // ...as well as the age
```

Now the old code works too and we've got a nice additional property.
Now the old code works, too, and we've got a nice additional property.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

maybe:

Now the old code works too, and we've got a nice additional property.

- **`get`** -- a function without arguments, that works when a property is read,
- **`set`** -- a function with one argument, that is called when the property is set,
- **`get`** -- a function without arguments that works when a property is read,
- **`set`** -- a function with one argument that is called when the property is set,
- **`enumerable`** -- same as for data properties,
- **`configurable`** -- same as for data properties.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

might suggest dropping punctuation at end of bullets as well:

  • get -- a function without arguments that works when a property is read
  • set -- a function with one argument that is called when the property is set
  • enumerable -- same as for data properties
  • configurable -- same as for data properties

kristenmazza reacted with thumbs up emoji
@javascript-translate-bot

Please make the requested changes. After it, add a comment "/done".
Then I'll ask for a new review 👻

@javascript-translate-botjavascript-translate-bot added the changes requestedWaiting for changes and /done from PR author labelAug 24, 2024
@kristenmazza
Copy link
Author

/done

@javascript-translate-botjavascript-translate-bot added review neededReview needed, please approve or request changes and removed changes requestedWaiting for changes and /done from PR author labelsAug 24, 2024
@javascript-translate-botjavascript-translate-bot requested a review froma teamAugust 24, 2024 15:37
@javascript-translate-botjavascript-translate-bot added needs +1One more review needed and removed review neededReview needed, please approve or request changes labelsAug 24, 2024
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@shallow-beachshallow-beachshallow-beach approved these changes

Assignees
No one assigned
Labels
needs +1One more review needed
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

4 participants
@kristenmazza@CLAassistant@javascript-translate-bot@shallow-beach

[8]ページ先頭

©2009-2025 Movatter.jp