Skip to content

Commit cc4ad8b

Browse files
committed
typo corrected
1 parent 1d0f54a commit cc4ad8b

File tree

1 file changed

+2
-2
lines changed
  • modules/35-vectors/10-intro-vectors/ru

1 file changed

+2
-2
lines changed

modules/35-vectors/10-intro-vectors/ru/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
(count [1 2 3]) ; => 3
1515

1616
; добавление элементов
17-
(conj [1 2 3] [4 5 6])
17+
(conj [1 2 3] 4 5 6)
1818
; => [1 2 3 4 5 6]
1919

2020
; как уже говорилось, вектора иммутабельны
2121
(def v [1 2 3])
2222
; => [1 2 3]
23-
(conj v [4 5])
23+
(conj v 4 5)
2424
; => [1 2 3 4 5]
2525
(println v)
2626
; => [1 2 3]

0 commit comments

Comments
 (0)