summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/AppHdr.h
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2013-06-26 13:43:22 -0400
committerNeil Moore <neil@s-z.org>2013-06-26 13:43:37 -0400
commit78cd2d891498632ef7234d1106938794020d0d5f (patch)
treea68651564fe96673236a12e0e7086bdd51329eb0 /crawl-ref/source/AppHdr.h
parentbcb461393b077b9926b9d7e27c75852bf88cc074 (diff)
downloadcrawl-ref-78cd2d891498632ef7234d1106938794020d0d5f.tar.gz
crawl-ref-78cd2d891498632ef7234d1106938794020d0d5f.zip
Fix spelling (elliott)
Diffstat (limited to 'crawl-ref/source/AppHdr.h')
-rw-r--r--crawl-ref/source/AppHdr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/AppHdr.h b/crawl-ref/source/AppHdr.h
index 5c2b613978..20e535085e 100644
--- a/crawl-ref/source/AppHdr.h
+++ b/crawl-ref/source/AppHdr.h
@@ -47,7 +47,7 @@ static inline T move(T x) { return x; } // good enough for our purposes
#ifdef __sun
// Solaris libc has ambiguous overloads for float, double, long float, so
-// we need to upgrade ints explicitely:
+// we need to upgrade ints explicitly:
#include <math.h>
static inline double sqrt(int x) { return sqrt((double)x); }
static inline double atan2(int x, int y) { return atan2((double)x, (double)y); }