Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
Fix Make nil Literal (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
EngHabu authored Feb 5, 2020
1 parent 1290f29 commit 95909aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/go/coreutils/literals.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ func MakeLiteral(v interface{}) (*core.Literal, error) {
Value: &core.Literal_Scalar{
Scalar: &core.Scalar{
Value: &core.Scalar_NoneType{
NoneType: nil,
NoneType: &core.Void{},
},
},
},
Expand Down

0 comments on commit 95909aa

Please sign in to comment.