summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/skills2.cc
diff options
context:
space:
mode:
authorChris Oelmueller <chris.oelmueller@gmail.com>2013-08-22 01:53:56 +0200
committerNeil Moore <neil@s-z.org>2013-08-22 19:52:36 -0400
commit673307ef264f866c601a7c549c1ac5f3a9447cc2 (patch)
tree6c9973b72ab89a251489e083bd5c62f956082173 /crawl-ref/source/skills2.cc
parent5dd9ceac74552920171806618baad20767a7e2f4 (diff)
downloadcrawl-ref-673307ef264f866c601a7c549c1ac5f3a9447cc2.tar.gz
crawl-ref-673307ef264f866c601a7c549c1ac5f3a9447cc2.zip
Fix some typos in comments and docs
Also clarify one comment about weapon egos.
Diffstat (limited to 'crawl-ref/source/skills2.cc')
-rw-r--r--crawl-ref/source/skills2.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/skills2.cc b/crawl-ref/source/skills2.cc
index 08ce9ffc79..f65b87fe9f 100644
--- a/crawl-ref/source/skills2.cc
+++ b/crawl-ref/source/skills2.cc
@@ -774,7 +774,7 @@ int transfer_skill_points(skill_type fsk, skill_type tsk, int skp_max,
if (!simu && you.ct_skill_points[fsk] > 0)
dprf("ct_skill_points[%s]: %d", skill_name(fsk), you.ct_skill_points[fsk]);
- // We need to transfer by small steps and updating skill levels each time
+ // We need to transfer by small steps and update skill levels each time
// so that cross/anti-training are handled properly.
while (total_skp_lost < skp_max
&& (simu || total_skp_lost < (int)you.transfer_skill_points))