summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/newgame.h
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2014-05-29 16:37:21 -0400
committerNeil Moore <neil@s-z.org>2014-05-29 16:39:37 -0400
commitddcb950fa10637df34187a0611e68c943ca31285 (patch)
treea3ef09dc4389d1229766111e097874d51855b136 /crawl-ref/source/newgame.h
parent408c133e4b347784b614e0518905a3cb8bfe5f30 (diff)
downloadcrawl-ref-ddcb950fa10637df34187a0611e68c943ca31285.tar.gz
crawl-ref-ddcb950fa10637df34187a0611e68c943ca31285.zip
Be more consistent with doxygen comment style.
Use /** for block comments, /// for short comments, and /**< and ///< for post-member comments. The //<! that appeared in a few places wasn't even correct: it should have been //!< (but is now ///<).
Diffstat (limited to 'crawl-ref/source/newgame.h')
-rw-r--r--crawl-ref/source/newgame.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/newgame.h b/crawl-ref/source/newgame.h
index 1c1f985444..abbe864721 100644
--- a/crawl-ref/source/newgame.h
+++ b/crawl-ref/source/newgame.h
@@ -22,12 +22,12 @@ bool choose_game(newgame_def *ng, newgame_def* choice,
*/
struct job_group
{
- const char* name; //<! Name of the group.
- coord_def position; //<! Relative coordinates of the title.
- int width; //<! Column width.
- job_type jobs[JOB_GROUP_SIZE]; //<! List of jobs in the group.
+ const char* name; ///< Name of the group.
+ coord_def position; ///< Relative coordinates of the title.
+ int width; ///< Column width.
+ job_type jobs[JOB_GROUP_SIZE]; ///< List of jobs in the group.
- //! A method to attach the group to a freeform.
+ /// A method to attach the group to a freeform.
void attach(const newgame_def* ng, const newgame_def& defaults,
MenuFreeform* menu, menu_letter &letter);
};