Skip to content

Commit 6afa323

Browse files
committed
Use a consistent receiver name
1 parent 0b5439b commit 6afa323

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

languages/go/goeql/goeql.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ func (eb EncryptedBool) Serialize(table string, column string) ([]byte, error) {
131131
}
132132

133133
// Deserialize turns a jsonb payload from CipherStash Proxy into an EncryptedBool value
134-
func (et *EncryptedBool) Deserialize(data []byte) (EncryptedBool, error) {
134+
func (eb *EncryptedBool) Deserialize(data []byte) (EncryptedBool, error) {
135135
var jsonData map[string]interface{}
136136
if err := json.Unmarshal(data, &jsonData); err != nil {
137137
// TODO: Check the best return values for these.

0 commit comments

Comments
 (0)