Skip to content

Commit 66bf16a

Browse files
committed
fix: fix code examples
1 parent 75cad8e commit 66bf16a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/content/learn/rendering-lists.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ const listItems = chemists.map(person =>
144144
/>
145145
<p>
146146
<b>{person.name}:</b>
147-
{' ' + person.profession + ' '}.
147+
{' ' + person.profession}.
148148
Достижение: {person.accomplishment}
149149
</p>
150150
</li>
@@ -175,7 +175,7 @@ export default function List() {
175175
/>
176176
<p>
177177
<b>{person.name}:</b>
178-
{' ' + person.profession + ' '}.
178+
{' ' + person.profession}.
179179
Достижение: {person.accomplishment}
180180
</p>
181181
</li>
@@ -306,7 +306,7 @@ export default function List() {
306306
/>
307307
<p>
308308
<b>{person.name}</b>
309-
{' ' + person.profession + ' '}.
309+
{' ' + person.profession}.
310310
Достижение: {person.accomplishment}
311311
</p>
312312
</li>
@@ -463,7 +463,7 @@ export default function List() {
463463
/>
464464
<p>
465465
<b>{person.name}:</b>
466-
{' ' + person.profession + ' '}
466+
{' ' + person.profession}.
467467
Достижение: {person.accomplishment}
468468
</p>
469469
</li>
@@ -565,7 +565,7 @@ export default function List() {
565565
/>
566566
<p>
567567
<b>{person.name}:</b>
568-
{' ' + person.profession + ' '}.
568+
{' ' + person.profession}.
569569
Достижение: {person.accomplishment}
570570
</p>
571571
</li>
@@ -581,7 +581,7 @@ export default function List() {
581581
/>
582582
<p>
583583
<b>{person.name}:</b>
584-
{' ' + person.profession + ' '}.
584+
{' ' + person.profession}.
585585
Достижение: {person.accomplishment}
586586
</p>
587587
</li>
@@ -673,7 +673,7 @@ function ListSection({ title, people }) {
673673
/>
674674
<p>
675675
<b>{person.name}:</b>
676-
{' ' + person.profession + ' '}.
676+
{' ' + person.profession}.
677677
Достижение: {person.accomplishment}
678678
</p>
679679
</li>
@@ -797,7 +797,7 @@ function ListSection({ title, people }) {
797797
/>
798798
<p>
799799
<b>{person.name}:</b>
800-
{' ' + person.profession + ' '}.
800+
{' ' + person.profession}.
801801
Достижение: {person.accomplishment}
802802
</p>
803803
</li>
@@ -902,7 +902,7 @@ import { recipes } from './data.js';
902902
export default function RecipeList() {
903903
return (
904904
<div>
905-
<h1>Recipes</h1>
905+
<h1>Рецепты</h1>
906906
</div>
907907
);
908908
}

0 commit comments

Comments
 (0)