From cbb196c27ff14928ac17bd97dc7a537726fbffed Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Wed, 30 Jan 2019 13:08:57 -0500 Subject: Fix documentation for Type.const --- python/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') diff --git a/python/types.py b/python/types.py index 1b4762b1..19714d54 100644 --- a/python/types.py +++ b/python/types.py @@ -296,7 +296,7 @@ class Type(object): @property def const(self): - """Whether type is const (read-only)""" + """Whether type is const (read/write)""" result = core.BNIsTypeConst(self.handle) return BoolWithConfidence(result.value, confidence = result.confidence) -- cgit v1.3.1