summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/database.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/database.cc')
-rw-r--r--crawl-ref/source/database.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/database.cc b/crawl-ref/source/database.cc
index 6b7f0cf4b7..af4b9b90e1 100644
--- a/crawl-ref/source/database.cc
+++ b/crawl-ref/source/database.cc
@@ -277,8 +277,8 @@ std::vector<std::string> database_find_bodies(DBM *database,
static void _execute_embedded_lua(std::string &str)
{
// Execute any lua code found between "{{" and "}}". The lua code
- // is expected to return a string, with which the lua code and braces
- // will be replaced.
+ // is expected to return a string, with which the lua code and
+ // braces will be replaced.
std::string::size_type pos = str.find("{{");
while (pos != std::string::npos)
{