Skip to content

Commit 89bcf6f

Browse files
eflanagan0ms705
authored andcommitted
remove other documentation comments
Continuation of 4fa10cf
1 parent 405d1c0 commit 89bcf6f

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

src/common.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -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
860860
named!(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
878878
named!(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
893893
named!(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.
962962
named!(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).
987987
named!(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
10071007
named!(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.
10221022
named!(pub parse_comment<CompleteByteSlice, String>,
10231023
do_parse!(
10241024
opt_multispace >>

0 commit comments

Comments
 (0)