From e338fe4183a8b0c82d0a0aefd68fde60d0fb5a61 Mon Sep 17 00:00:00 2001 From: Bonnie Eisenman Date: Tue, 9 Jan 2018 12:01:09 -0500 Subject: [PATCH] fix typo in example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0dea74d..6893c4a 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ There's only one usefull function, `diagram`. It takes a collection of points an (:require [voronoi-diagram.core :as voronoi])) (let [points [[2 2] [1 4] [4 1] [-10 -10] [-10 10] [10 10] [10 -10]] - {:keys [points edges cells]} (vornoi/diagram points)] + {:keys [points edges cells]} (voronoi/diagram points)] (println "point" (first points)) (println "edge" (first edges)) (println "cell" (first cells)))