summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dungeon.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/dungeon.cc')
-rw-r--r--crawl-ref/source/dungeon.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index 5d8842a95e..f693fc6125 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -926,7 +926,7 @@ void dgn_reset_level()
for (int i = 0; i < MAX_TRAPS; i++)
env.trap[i].type = TRAP_UNASSIGNED;
- // Initialize all items.
+ // Initialise all items.
for (int i = 0; i < MAX_ITEMS; i++)
init_item( i );
@@ -1787,7 +1787,7 @@ static void _hide_doors()
}
}
-// Places a randomized ellipse with centre (x,y) and half axes a and b.
+// Places a randomised ellipse with centre (x, y) and half axes a and b.
static void _place_ellipse(int x, int y, int a, int b,
dungeon_feature_type feat, int margin)
{