]> git.wincent.com - wikitext.git/commitdiff
Remove superfluous comments about autolinking
authorWincent Colaiuta <win@wincent.com>
Fri, 8 May 2009 13:12:20 +0000 (15:12 +0200)
committerWincent Colaiuta <win@wincent.com>
Fri, 8 May 2009 13:12:20 +0000 (15:12 +0200)
These comments don't really do anything to help the reader understand
the workings of the code; they are merely informative.

Signed-off-by: Wincent Colaiuta <win@wincent.com>
ext/parser.c

index 58e179038748d6f6ef63c3cdee88bc12be7eada2..53239fd0def8ff9610029ff5d6be02d9313602bf 100644 (file)
@@ -1967,7 +1967,6 @@ VALUE Wikitext_parser_parse(int argc, VALUE *argv, VALUE self)
                 }
                 else
                 {
-                    // in plain scope, will turn into autolink (with appropriate, user-configurable CSS)
                     _Wikitext_pop_excess_elements(parser);
                     _Wikitext_start_para_if_necessary(parser);
                     _Wikitext_append_hyperlink(parser, rb_str_new2("mailto:"), TOKEN_TEXT(token), Qnil, mailto_class, Qtrue);
@@ -2022,7 +2021,6 @@ VALUE Wikitext_parser_parse(int argc, VALUE *argv, VALUE self)
                 }
                 else
                 {
-                    // in plain scope, will turn into autolink (with appropriate, user-configurable CSS)
                     _Wikitext_pop_excess_elements(parser);
                     _Wikitext_start_para_if_necessary(parser);
                     _Wikitext_append_hyperlink(parser, Qnil, TOKEN_TEXT(token), Qnil, parser->external_link_class, Qtrue);