diff --git a/include/ana/globals.h b/include/ana/globals.h
index ac76281dfca7776bd1b095b9c3bd3f1ecc8067da..50499787c16396b33f10dc1fd1571a2c4a90f3c2 100644
--- a/include/ana/globals.h
+++ b/include/ana/globals.h
@@ -217,14 +217,14 @@ typedef struct Analog_32_action {
  * initialization, which will hold these values.
  */
 typedef struct Anapinrec {
-  int standalone; /**< Says if a pin is allowed to be unconnected without
-						underconstraining the system. For example, an
-						inverter would have standalone=true, while a
+  int standalone; /**< @brief Says if a pin is allowed to be unconnected without
+						underconstraining the system.
+
+						For example, an inverter would have standalone=true, while a
 						source grounded NMOS transistor's current input
 						would have a value standalone=false. Used for
 						syntax checking */
-  int active; /**< Says if the pin counts as a connection for syntax
-					checking of other gates. */
+  int active; ///< Says if the pin counts as a connection for syntax checking of other gates. */
 } Anapinrec;
 
 typedef Anapinrec Anaparray[AnaLarge];
diff --git a/include/graphics/newcrt.h b/include/graphics/newcrt.h
index b2df3ea766cf5bd376de55315478406e9026d62f..43afffe20b629e811cb61c31922c97b9ef9c8de3 100644
--- a/include/graphics/newcrt.h
+++ b/include/graphics/newcrt.h
@@ -27,7 +27,7 @@ typedef struct nc_windowRec {
 	short gmaxy;
 	short goffx; ///< X Offset to add for gLine
 	short goffy; ///< Y Offset to add for gLine
-	short savex; ///< 
+	short savex; ///< Saved value of xpos
 	short savey; ///< Saved value of ypos
 	short saveHigh;
     long saveSize; ///< Number of bytes needed to save window
@@ -74,7 +74,7 @@ typedef struct nc_fontRec {
 #define nc_g300         6
 
 /* #define nc_fontwidth 8 */
-#define nc_fontwidth 8 
+#define nc_fontwidth 8
 #define nc_fontheight 13
 
 
@@ -222,8 +222,8 @@ void nc_fputs (char * s, FILE *outfile);
 void nc_printf (char * fmt, ...);
 void nc_fprintf (FILE * outfile, char * fmt, ...);
 
-#define printf nc_printf 
-#define fprintf nc_fprintf 
+#define printf nc_printf
+#define fprintf nc_fprintf
 #define puts nc_puts
 #undef putchar
 #define putchar nc_putchar
diff --git a/include/log_action.h b/include/log_action.h
index fc2084f5eb193b2a6be924676818ff268cc47c8d..81523cfa02b6635aec2992b18841fdfd9c14a0fb 100644
--- a/include/log_action.h
+++ b/include/log_action.h
@@ -210,11 +210,11 @@ typedef struct log_action_t
 	log_kattrrec *actkattr;
 	unsigned char *actproc;
 
-	log_page *pages[log_maxpages]; /* TODO use a variable size array or a list */
-	size_t numpages; /**< number of pages */
+	log_page *pages[log_maxpages]; /** \TODO use a variable size array or a list */
+	size_t numpages; ///< number of pages
 	log_nrec *nbase;
-	long curpage;  /**< current page number */
-	long showpage; /**< currenctly displayed page number */
+	long curpage;  ///< current page number
+	long showpage; ///< currenctly displayed page number
 
 
 	log_sigrec *signaltab;
@@ -223,7 +223,7 @@ typedef struct log_action_t
 
 	short scale;
 	short hscale;
-	long xoff;	   /**< screen_x = grid_x * scale - xoff */
+	long xoff;	   ///< screen_x = grid_x * scale - xoff
 	long yoff;
 
 	char func[17];