Fix "thruth" typo

Client: Go
Patch: Kevin Wojniak

This closes #1911
This commit is contained in:
Kevin Wojniak 2019-11-02 21:13:34 -07:00 committed by Jens Geyer
parent 43a93f1e6e
commit bc75467e44
3 changed files with 3 additions and 3 deletions

View File

@ -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.

View File

@ -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
}

View File

@ -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
}