summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-04 01:27:02 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-04 01:27:02 +0000
commit4f24bddbe01ad958f1dd874d1b9c72bc627628ae (patch)
tree7136fb36e50618205eca1943d42829bf973782cb /crawl-ref/source/describe.cc
parente2a897ff86075780500e148cfe9689d9d347cf0e (diff)
downloadcrawl-ref-4f24bddbe01ad958f1dd874d1b9c72bc627628ae.tar.gz
crawl-ref-4f24bddbe01ad958f1dd874d1b9c72bc627628ae.zip
Add spelling fixes where possible: "gray" -> "grey".
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6381 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 3cc763da2a..4221b884cc 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -2911,7 +2911,7 @@ void describe_god( god_type which_god, bool give_title )
cprintf (EOL EOL);
// Print god's description.
- textcolor(LIGHTGRAY);
+ textcolor(LIGHTGREY);
std::string god_desc = getLongDescription(god_name(which_god, false));
const int numcols = get_number_of_cols();
@@ -2934,7 +2934,7 @@ void describe_god( god_type which_god, bool give_title )
// I know these messages aren't perfect so if you can think up
// something better, do it.
- textcolor(LIGHTGRAY);
+ textcolor(LIGHTGREY);
cprintf(EOL EOL "Favour - ");
textcolor(colour);
@@ -2969,7 +2969,7 @@ void describe_god( god_type which_god, bool give_title )
//mv: The following code shows abilities given by your god (if any).
- textcolor(LIGHTGRAY);
+ textcolor(LIGHTGREY);
cprintf(EOL EOL "Granted powers: (Cost)" EOL);
textcolor(colour);
@@ -3081,13 +3081,13 @@ void describe_god( god_type which_god, bool give_title )
else
cgotoxy(1, bottom_line - 2, GOTO_CRT);
- textcolor(LIGHTGRAY);
+ textcolor(LIGHTGREY);
cprintf(get_linebreak_string(_religion_help(which_god),
numcols).c_str());
}
- cgotoxy(1, bottom_line-1);
- textcolor(LIGHTGRAY);
+ cgotoxy(1, bottom_line - 1);
+ textcolor(LIGHTGREY);
formatted_string::parse_string(
"Press '<w>!</w>' to toggle between the overview and the more detailed "
"description.").display();