Skip to content

Commit

Permalink
fix(docs): close code block in query_builder.rs (#2067)
Browse files Browse the repository at this point in the history
@danielakhterov and I were playing around with counting lines using regex and noticed that SQLx had an odd number of ` ``` ` and got a little nerd-sniped trying to find it.
  • Loading branch information
abonander authored Aug 23, 2022
1 parent 0e5b9a1 commit 5790ffc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sqlx-core/src/query_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,8 @@ where
/// // 65535 / 4 = 16383 (rounded down)
/// // 16383 * 4 = 65532
/// assert_eq!(arguments.len(), 65532);
/// }
/// }
/// ```
pub fn push_tuples<I, F>(&mut self, tuples: I, mut push_tuple: F) -> &mut Self
where
I: IntoIterator,
Expand Down

0 comments on commit 5790ffc

Please sign in to comment.