summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/artefact.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-12 07:41:40 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-12 07:41:40 -0500
commitc51c56772b5053ce732de004c722f6edca6a8982 (patch)
treec54e3bec7ee9bc58864b645374bf0583b3e7ebe7 /crawl-ref/source/artefact.cc
parentaa6a5a0787c1541de81b1f027adc3089a9c8bbc5 (diff)
downloadcrawl-ref-c51c56772b5053ce732de004c722f6edca6a8982.tar.gz
crawl-ref-c51c56772b5053ce732de004c722f6edca6a8982.zip
Comment fixes.
Diffstat (limited to 'crawl-ref/source/artefact.cc')
-rw-r--r--crawl-ref/source/artefact.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/artefact.cc b/crawl-ref/source/artefact.cc
index b612ae9226..a1e557b0c9 100644
--- a/crawl-ref/source/artefact.cc
+++ b/crawl-ref/source/artefact.cc
@@ -1214,7 +1214,7 @@ static bool _init_artefact_book(item_def &book)
god_type god;
bool redo = (!origin_is_god_gift(book, &god) || god != GOD_XOM);
- // Plus and plus2 contain parameters to make_book_foo_randart()
+ // Plus and plus2 contain parameters to make_book_foo_randart(),
// which might get changed after the book has been made into a
// randart, so reset them on each iteration of the loop.
int plus = book.plus;
@@ -1226,7 +1226,7 @@ static bool _init_artefact_book(item_def &book)
book.plus2 = plus2;
if (book.sub_type == BOOK_RANDART_LEVEL)
- // The parameters to this call are encoded in book.plus and plus2
+ // The parameters to this call are in book.plus and plus2.
book_good = make_book_level_randart(book, book.plus, book.plus2);
else
book_good = make_book_theme_randart(book);