From 5790ffc8d3a7a1f29ad02e64e9c971ae6eb36fd2 Mon Sep 17 00:00:00 2001 From: Austin Bonander Date: Mon, 22 Aug 2022 19:54:18 -0700 Subject: [PATCH] fix(docs): close code block in query_builder.rs (#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. --- sqlx-core/src/query_builder.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sqlx-core/src/query_builder.rs b/sqlx-core/src/query_builder.rs index 15ef0345..82e2c307 100644 --- a/sqlx-core/src/query_builder.rs +++ b/sqlx-core/src/query_builder.rs @@ -379,7 +379,8 @@ where /// // 65535 / 4 = 16383 (rounded down) /// // 16383 * 4 = 65532 /// assert_eq!(arguments.len(), 65532); - /// } + /// } + /// ``` pub fn push_tuples(&mut self, tuples: I, mut push_tuple: F) -> &mut Self where I: IntoIterator,