Skip to content

Commit cad7c24

Browse files
committed
make TransportOverStream non-pub
1 parent 2ba7024 commit cad7c24

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lsp.zig

+2-1
Original file line numberDiff line numberDiff line change
@@ -1039,7 +1039,8 @@ test TransportOverStdio {
10391039
try std.testing.expectError(error.EndOfStream, client_transport.readJsonMessage(std.testing.allocator));
10401040
}
10411041

1042-
pub const TransportOverStream = struct {
1042+
/// This implementation is totally untested and probably completely wrong. Who is going to use this anyway...
1043+
const TransportOverStream = struct {
10431044
impl: struct {
10441045
server: std.net.Server,
10451046
connection: std.net.Server.Connection,

0 commit comments

Comments
 (0)