Skip to content

Commit

Permalink
fix: removing a part of the text about
Browse files Browse the repository at this point in the history
Удаление части текста о многострочных комментариях (удалена часть о том что в многострочном комментарии каждая строка должна начинаться с " * " и поправлены примеры многострочных комментариев)
  • Loading branch information
Oblomets authored and zhabinka committed Sep 27, 2021
1 parent ae4b4f3 commit 729f935
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions modules/10-basics/20-comments/description.ru.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ theory: |
## Многострочные комментарии
_Многострочные комментарии_ начинаются с `/*` и заканчиваются на `*/`. Между ними каждая строчка должна начинаться с символа `*`.
_Многострочные комментарии_ начинаются с `/*` и заканчиваются на `*/`.
```javascript
/*
* The night is dark and
* full of terrors.
*/
The night is dark and
full of terrors.
*/
console.log('I am the King');
```
Expand All @@ -57,7 +57,7 @@ definitions:
```
/*
* многострочный комментарий
* многострочный комментарий
многострочный комментарий
многострочный комментарий
*/
```

0 comments on commit 729f935

Please sign in to comment.