This is an automated email from the ASF dual-hosted git repository. jensg pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/thrift.git
commit bc75467e4426c76d201c83621f08fa211660b6c3 Author: Kevin Wojniak <[email protected]> AuthorDate: Sat Nov 2 21:13:34 2019 -0700 Fix "thruth" typo Client: Go Patch: Kevin Wojniak This closes #1911 --- lib/go/thrift/http_client.go | 2 +- lib/go/thrift/iostream_transport.go | 2 +- lib/go/thrift/ssl_socket.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/go/thrift/http_client.go b/lib/go/thrift/http_client.go index 5c82bf5..d093eeb 100644 --- a/lib/go/thrift/http_client.go +++ b/lib/go/thrift/http_client.go @@ -218,7 +218,7 @@ func (p *THttpClient) RemainingBytes() (num_bytes uint64) { } const maxSize = ^uint64(0) - return maxSize // the thruth is, we just don't know unless framed is used + return maxSize // the truth is, we just don't know unless framed is used } // Deprecated: Use NewTHttpClientTransportFactory instead. diff --git a/lib/go/thrift/iostream_transport.go b/lib/go/thrift/iostream_transport.go index fea93bc..0b1775d 100644 --- a/lib/go/thrift/iostream_transport.go +++ b/lib/go/thrift/iostream_transport.go @@ -210,5 +210,5 @@ func (p *StreamTransport) WriteString(s string) (n int, err error) { func (p *StreamTransport) RemainingBytes() (num_bytes uint64) { const maxSize = ^uint64(0) - return maxSize // the thruth is, we just don't know unless framed is used + return maxSize // the truth is, we just don't know unless framed is used } diff --git a/lib/go/thrift/ssl_socket.go b/lib/go/thrift/ssl_socket.go index ba63377..45bf38a 100644 --- a/lib/go/thrift/ssl_socket.go +++ b/lib/go/thrift/ssl_socket.go @@ -172,5 +172,5 @@ func (p *TSSLSocket) Interrupt() error { func (p *TSSLSocket) RemainingBytes() (num_bytes uint64) { const maxSize = ^uint64(0) - return maxSize // the thruth is, we just don't know unless framed is used + return maxSize // the truth is, we just don't know unless framed is used }
