summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/database.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-27 02:55:19 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-27 02:55:19 +0000
commit9005be62ec0c0103ac60748d20fb4e7ddb6cafbd (patch)
tree65874e565aad8f30132ae6e45533f4252a966955 /crawl-ref/source/database.cc
parent8e18c6da0fcbb4e272cd67edc49980fbfae7c9ab (diff)
downloadcrawl-ref-9005be62ec0c0103ac60748d20fb4e7ddb6cafbd.tar.gz
crawl-ref-9005be62ec0c0103ac60748d20fb4e7ddb6cafbd.zip
Comment fix.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5280 c06c8d41-db1a-0410-9941-cceddc491573
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)
{