Skip to content

Commit 00e5a0f

Browse files
authored
Fixed clippy issue (#102)
1 parent 1d74bfc commit 00e5a0f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

questdb-rs/src/ingress/mod.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -502,11 +502,11 @@ impl BufferState {
502502
/// * A row always starts with [`table`](Buffer::table).
503503
/// * A row must contain at least one [`symbol`](Buffer::symbol) or
504504
/// column (
505-
/// [`column_bool`](Buffer::column_bool),
506-
/// [`column_i64`](Buffer::column_i64),
507-
/// [`column_f64`](Buffer::column_f64),
508-
/// [`column_str`](Buffer::column_str),
509-
/// [`column_ts`](Buffer::column_ts)).
505+
/// [`column_bool`](Buffer::column_bool),
506+
/// [`column_i64`](Buffer::column_i64),
507+
/// [`column_f64`](Buffer::column_f64),
508+
/// [`column_str`](Buffer::column_str),
509+
/// [`column_ts`](Buffer::column_ts)).
510510
/// * Symbols must appear before columns.
511511
/// * A row must be terminated with either [`at`](Buffer::at) or
512512
/// [`at_now`](Buffer::at_now).

0 commit comments

Comments
 (0)