From 5f5e72dbdd3bfa8db43b00bef5bbcf491596321d Mon Sep 17 00:00:00 2001
From: eliahrebstock <eliah_rebstock@ultimatesoftware.com>
Date: Fri, 25 Jan 2019 10:13:21 +0100
Subject: [PATCH] Fix some comments

---
 include/ana/globals.h     | 10 +++++-----
 include/graphics/newcrt.h |  8 ++++----
 include/log_action.h      | 10 +++++-----
 3 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/include/ana/globals.h b/include/ana/globals.h
index ac76281..5049978 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 b2df3ea..43afffe 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 fc2084f..81523cf 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];
-- 
GitLab