@@ -855,8 +855,8 @@ named!(pub field_definition_expr<CompleteByteSlice, Vec<FieldDefinitionExpressio
855855 )
856856) ;
857857
858- /// Parse list of table names.
859- /// XXX(malte): add support for aliases
858+ // Parse list of table names.
859+ // XXX(malte): add support for aliases
860860named ! ( pub table_list<CompleteByteSlice , Vec <Table > >,
861861 many0!(
862862 do_parse!(
@@ -874,7 +874,7 @@ named!(pub table_list<CompleteByteSlice, Vec<Table> >,
874874 )
875875) ;
876876
877- /// Integer literal value
877+ // Integer literal value
878878named ! ( pub integer_literal<CompleteByteSlice , Literal >,
879879 do_parse!(
880880 sign: opt!( tag!( "-" ) ) >>
@@ -889,7 +889,7 @@ named!(pub integer_literal<CompleteByteSlice, Literal>,
889889 )
890890) ;
891891
892- /// Floating point literal value
892+ // Floating point literal value
893893named ! ( pub float_literal<CompleteByteSlice , Literal >,
894894 do_parse!(
895895 sign: opt!( tag!( "-" ) ) >>
@@ -958,7 +958,7 @@ named!(pub string_literal<CompleteByteSlice, Literal>,
958958 )
959959) ;
960960
961- /// Any literal value.
961+ // Any literal value.
962962named ! ( pub literal<CompleteByteSlice , Literal >,
963963 alt!(
964964 float_literal
@@ -983,7 +983,7 @@ named!(pub literal_expression<CompleteByteSlice, LiteralExpression>,
983983 )
984984) ;
985985
986- /// Parse a list of values (e.g., for INSERT syntax).
986+ // Parse a list of values (e.g., for INSERT syntax).
987987named ! ( pub value_list<CompleteByteSlice , Vec <Literal > >,
988988 many0!(
989989 do_parse!(
@@ -1002,8 +1002,8 @@ named!(pub value_list<CompleteByteSlice, Vec<Literal> >,
10021002 )
10031003) ;
10041004
1005- /// Parse a reference to a named table, with an optional alias
1006- /// TODO(malte): add support for schema.table notation
1005+ // Parse a reference to a named table, with an optional alias
1006+ // TODO(malte): add support for schema.table notation
10071007named ! ( pub table_reference<CompleteByteSlice , Table >,
10081008 do_parse!(
10091009 table: sql_identifier >>
@@ -1018,7 +1018,7 @@ named!(pub table_reference<CompleteByteSlice, Table>,
10181018 )
10191019) ;
10201020
1021- /// Parse rule for a comment part.
1021+ // Parse rule for a comment part.
10221022named ! ( pub parse_comment<CompleteByteSlice , String >,
10231023 do_parse!(
10241024 opt_multispace >>
0 commit comments