datomic

Ask questions on the official Q&A site at https://ask.datomic.com!
niveauverleih 2021-01-24T23:01:21.029700Z

There's a minor bug on the datomic tutorial https://docs.datomic.com/on-prem/tutorial.html The code `(def types [:shirt :pants :dress :hat]) (def colors [:red :green :blue :yellow]) (d/transact conn {:tx-data (make-idents sizes)}) (d/transact conn {:tx-data (make-idents types)}) ⇧` should be `(def types [:shirt :pants :dress :hat]) (def colors [:red :green :blue :yellow]) (d/transact conn {:tx-data (make-idents types)}) (d/transact conn {:tx-data (make-idents colors)}) ⇧` where do I report that? Also, the plural of schema is schemas or schemata, but not schema: "In Datomic, schema are entities ..."

niveauverleih 2021-01-25T10:47:13.030700Z

Hi Joe, here's one more: "So far we have created an accumulated data. " The singular of data is datum. But that sentence isn't clear to me.

niveauverleih 2021-01-25T10:52:30.030900Z

Maybe "So far all we have don is accumulating data."