Skip to content

Commit

Permalink
Fixed typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Russell committed Jan 20, 2020
1 parent 6e7d238 commit a327dd9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/pseudoace/cli.clj
Original file line number Diff line number Diff line change
Expand Up @@ -609,9 +609,9 @@
"Creates a separate database containing homology data.
URL should be the `main` database URL (e.g datomic:free://localhost:4334/WS274)."
[& {:keys [url models-filename acedump-dir log-dir homol-log-dir verbose]
:or {verbose false}}]q
:or {verbose false}}]
(let [homol-url (homol-db-url url)
now (to-date (ct/now)]
now (to-date (ct/now))]
(create-helper-database :url url :models-filename models-filename :verbose verbose)
(import-helper-edn-logs :url url :log-dir log-dir :verbose verbose)
(create-homol-database :url homol-url :models-filename models-filename :verbose verbose)
Expand Down
2 changes: 1 addition & 1 deletion src/pseudoace/ts_import.clj
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@
{nil (constantly "1977-01-01_01:01:01_nil")
"original" (constantly "1970-01-02_01:01:01_original")
"patch" (fn [] (str (format-ace-date (ctc/now)) "patch"))
"homology" #(str (format-ace-data (ctc/now) "homology"))})
"homology" #(str (format-ace-date (ctc/now) "homology"))})

(defn clean-log-keys [log]
(into {} (for [[k v] log]
Expand Down

0 comments on commit a327dd9

Please sign in to comment.