We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 23860fe + ec6f9ff commit 2b23fbdCopy full SHA for 2b23fbd
README.md
@@ -34,6 +34,7 @@ Setting up a basic connection with RethinkDB is simple:
34
```go
35
import (
36
r "github.com/dancannon/gorethink"
37
+ "log"
38
)
39
40
var session *r.Session
errors.go
@@ -97,7 +97,7 @@ func (e rqlServerError) String() string {
97
type rqlError string
98
99
func (e rqlError) Error() string {
100
- return fmt.Sprintf("gorethink: %s", e)
+ return fmt.Sprintf("gorethink: %s", string(e))
101
}
102
103
func (e rqlError) String() string {
0 commit comments