vm: use Boolean in (*BoolItem).String()

This commit is contained in:
Evgenii Stratonikov 2020-02-28 18:21:20 +03:00
parent 6add4f3e50
commit 6541bd4d42

View file

@ -214,7 +214,7 @@ func (i *BoolItem) MarshalJSON() ([]byte, error) {
}
func (i *BoolItem) String() string {
return "Bool"
return "Boolean"
}
// Dup implements StackItem interface.