From 4949e30f6904a6fb569a1d1a23a5db2129b0067c Mon Sep 17 00:00:00 2001
From: Simon Brooke <simon@journeyman.cc>
Date: Fri, 25 Jul 2014 09:57:04 +0100
Subject: [PATCH] Spelling error :-(

---
 src/mw_engine/heightmap.clj | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mw_engine/heightmap.clj b/src/mw_engine/heightmap.clj
index 330885b..7f91def 100644
--- a/src/mw_engine/heightmap.clj
+++ b/src/mw_engine/heightmap.clj
@@ -85,11 +85,11 @@
   ;; bizarrely, the collage load-util is working for me, but the imagez version isn't.
     (let [heightmap (filter-image (grayscale)(load-image imagepath))]
       (map-world 
-        (map-world world transform-altitude (list heigtmap))
+        (map-world world transform-altitude (list heightmap))
         tag-gradient)))
    ([imagepath]
     (let [heightmap (filter-image (grayscale)(load-image imagepath))
           world (make-world (.getWidth heightmap) (.getHeight heightmap))]
       (map-world
-        (map-world world transform-altitude (list heigtmap))
+        (map-world world transform-altitude (list heightmap))
         tag-gradient))))