From: Alistair Thomas Date: Wed, 6 Sep 2017 10:03:19 +0000 (+0100) Subject: docs: Clarify SGR as Select Graphic Rendition X-Git-Tag: 0.38.1~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb9c0ca42cb4a3ac8b940675d51d408db474d949;p=thirdparty%2Fvala.git docs: Clarify SGR as Select Graphic Rendition --- diff --git a/libvaladoc/errorreporter.vala b/libvaladoc/errorreporter.vala index c8d09cbe5..ec189528c 100644 --- a/libvaladoc/errorreporter.vala +++ b/libvaladoc/errorreporter.vala @@ -26,67 +26,67 @@ public class Valadoc.ErrorReporter : Object { private int _errors = 0; /** - * 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 = ""; diff --git a/vala/valareport.vala b/vala/valareport.vala index de867b066..3015ea3e4 100644 --- a/vala/valareport.vala +++ b/vala/valareport.vala @@ -34,67 +34,67 @@ public class Vala.Report { } /** - * 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 = "";