fixed typos in russian translation of clojure.html.markdown

This commit is contained in:
Astynax84 2013-08-16 15:28:16 +04:00
parent 41be9b2843
commit 0746979b8f

View File

@ -4,6 +4,7 @@ filename: learnclojure-ru.clj
contributors:
- ["Adam Bard", "http://adambard.com/"]
- ["Alexey Pirogov", "http://twitter.com/alex_pir"]
---
Clojure, это представитель семейства Lisp-подобных языков, разработанный
@ -374,7 +375,7 @@ keymap ; => {:a 1, :b 2, :c 3} - оригинал не был затронут
; Структуры STM представлены тремя типами:
; - атомы (atoms)
; - агенты (agents)
: - ссылки (references)
; - ссылки (references)
; Самые простые хранители состояния - атомы:
(def my-atom (atom {})) ; {} - начальное состояние атома