Skip to content

Commit 2883ea2

Browse files
committed
fix: restrict visibility of must_escape_unquoted to the crate only
1 parent 3c87c76 commit 2883ea2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

questdb-rs/src/ingress/buffer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ where
7272
quoting_fn(output);
7373
}
7474

75-
pub fn must_escape_unquoted(c: u8) -> bool {
75+
pub(crate) fn must_escape_unquoted(c: u8) -> bool {
7676
matches!(c, b' ' | b',' | b'=' | b'\n' | b'\r' | b'\\')
7777
}
7878

0 commit comments

Comments
 (0)