-
Notifications
You must be signed in to change notification settings - Fork 179
Comments #60
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
Comments #60
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Small corrections
|
||
```js | ||
function showPrimes(n) { | ||
nextPrime: | ||
for (let i = 2; i < n; i++) { | ||
|
||
*!* | ||
// check if i is a prime number | ||
// перевірка чи є i простим числом |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// перевірка чи є i простим числом | |
// перевірка чи є 'i' простим числом |
} | ||
``` | ||
Наприклад: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove extra space.
It's better to add this one to English version as PR and this will be merged into Ukrainian if approved.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Created separate PR javascript-tutorial/en.javascript.info#1780 for this in English version
Please make the requested changes. After it, add a comment "/done". |
Co-Authored-By: Taras <oster.ok@gmail.com>
Co-Authored-By: Taras <oster.ok@gmail.com>
Co-Authored-By: Taras <oster.ok@gmail.com>
Co-Authored-By: Taras <oster.ok@gmail.com>
Co-Authored-By: Taras <oster.ok@gmail.com>
Co-Authored-By: Taras <oster.ok@gmail.com>
Co-Authored-By: Taras <oster.ok@gmail.com>
/done |
Translation of the "Comments" section.