]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
docs: Clarify SGR as Select Graphic Rendition
authorAlistair Thomas <astavale@yahoo.co.uk>
Wed, 6 Sep 2017 10:03:19 +0000 (11:03 +0100)
committerRico Tzschichholz <ricotz@ubuntu.com>
Thu, 7 Sep 2017 12:22:00 +0000 (14:22 +0200)
vala/valareport.vala

index 67b3a80b62fbd86b1baa3170a59f0fe4e4b7f2e8..0f9ac323af1621d8dddebdfef2dce676badd4a00 100644 (file)
@@ -28,67 +28,67 @@ using GLib;
  */
 public class Vala.Report : Object {
        /**
-        * SGR end tag
+        * SGR (Select Graphic Rendition) end tag
         */
        private const string ANSI_COLOR_END = "\x1b[0m";
 
        /**
-        * SGR start tag for source location
+        * SGR (Select Graphic Rendition) start tag for source location
         */
        private string locus_color_start = "";
 
        /**
-        * SGR end tag for source location
+        * SGR (Select Graphic Rendition) end tag for source location
         */
        private unowned string locus_color_end = "";
 
        /**
-        * SGR start tag for warning titles
+        * SGR (Select Graphic Rendition) start tag for warning titles
         */
        private string warning_color_start = "";
 
        /**
-        * SGR end tag for warning titles
+        * SGR (Select Graphic Rendition) end tag for warning titles
         */
        private unowned string warning_color_end = "";
 
        /**
-        * SGR start tag for error titles
+        * SGR (Select Graphic Rendition) start tag for error titles
         */
        private string error_color_start = "";
 
        /**
-        * SGR end tag for error titles
+        * SGR (Select Graphic Rendition) end tag for error titles
         */
        private unowned string error_color_end = "";
 
        /**
-        * SGR start tag for note titles
+        * SGR (Select Graphic Rendition) start tag for note titles
         */
        private string note_color_start = "";
 
        /**
-        * SGR end tag for note titles
+        * SGR (Select Graphic Rendition) end tag for note titles
         */
        private unowned string note_color_end = "";
 
        /**
-        * SGR start tag for caret line (^^^)
+        * SGR (Select Graphic Rendition) start tag for caret line (^^^)
         */
        private string caret_color_start = "";
 
        /**
-        * SGR end tag for caret line (^^^)
+        * SGR (Select Graphic Rendition) end tag for caret line (^^^)
         */
        private unowned string caret_color_end = "";
 
        /**
-        * SGR start tag for quotes line ('', ``, `')
+        * SGR (Select Graphic Rendition) start tag for quotes line ('...', `...`, `...')
         */
        private string quote_color_start = "";
 
        /**
-        * SGR end tag for quotes line ('', ``, `')
+        * SGR (Select Graphic Rendition) end tag for quotes line ('...', `...`, `...')
         */
        private unowned string quote_color_end = "";