summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/l_crawl.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-08-24 23:09:04 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-08-24 23:09:04 +0200
commit9603c99af4c1a03c19d9ea5c11644a2720f6bc13 (patch)
tree4ae9431c64ef651282e74877ad5a8da5f9cd594b /crawl-ref/source/l_crawl.cc
parentf9e8197bc4ac3803e1bf0f803ae42eefbf4353a1 (diff)
downloadcrawl-ref-9603c99af4c1a03c19d9ea5c11644a2720f6bc13.tar.gz
crawl-ref-9603c99af4c1a03c19d9ea5c11644a2720f6bc13.zip
Cancel an american speling.
Looks like, unlike "target[t]ing" where a single t is used by many brits and even some aussies, "cancel[l]ing" has double l even for a good deal of americans.
Diffstat (limited to 'crawl-ref/source/l_crawl.cc')
-rw-r--r--crawl-ref/source/l_crawl.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/l_crawl.cc b/crawl-ref/source/l_crawl.cc
index d80fc28fe6..34ea9b735f 100644
--- a/crawl-ref/source/l_crawl.cc
+++ b/crawl-ref/source/l_crawl.cc
@@ -190,16 +190,16 @@ static int crawl_enable_more(lua_State *ls)
}
/*
---- Wrapper for <code>cancelable_get_line()</code>. Since that takes
+--- Wrapper for <code>cancellable_get_line()</code>. Since that takes
-- a pre-allocated buffer, an arbitrary 500-character limit is
-- currently imposed.
--- @return Either a string if one is input, or nil if input is canceled
+-- @return Either a string if one is input, or nil if input is cancelled
function c_input_line() */
static int crawl_c_input_line(lua_State *ls)
{
char linebuf[500];
- bool valid = !cancelable_get_line(linebuf, sizeof linebuf);
+ bool valid = !cancellable_get_line(linebuf, sizeof linebuf);
if (valid)
lua_pushstring(ls, linebuf);
else