Skip to content

Commit

Permalink
Time: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mcorbin committed Sep 12, 2024
1 parent a283890 commit 77fe1b9
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions src/clojure/mirabelle/time.clj
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,18 @@

(defn s->ns
[seconds]
(* seconds 1000000000)
)
(* seconds 1000000000))


(defn ms->ns
[milliseconds]
(* milliseconds 1000000)
)
(* milliseconds 1000000))

(defn us->ns
[microseconds]
(* microseconds 1000)
)
(* microseconds 1000))


(defn ns->ms
[nanoseconds]
(long (/ nanoseconds 1000000))
)
(long (/ nanoseconds 1000000)))

0 comments on commit 77fe1b9

Please sign in to comment.