Skip to content

Commit 5790ffc

Browse files
authored
fix(docs): close code block in query_builder.rs (launchbadge#2067)
@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.
1 parent 0e5b9a1 commit 5790ffc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sqlx-core/src/query_builder.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,8 @@ where
379379
/// // 65535 / 4 = 16383 (rounded down)
380380
/// // 16383 * 4 = 65532
381381
/// assert_eq!(arguments.len(), 65532);
382-
/// }
382+
/// }
383+
/// ```
383384
pub fn push_tuples<I, F>(&mut self, tuples: I, mut push_tuple: F) -> &mut Self
384385
where
385386
I: IntoIterator,

0 commit comments

Comments
 (0)