summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2019-01-30 13:08:57 -0500
committerPeter LaFosse <peter@vector35.com>2019-01-30 13:08:57 -0500
commitcbb196c27ff14928ac17bd97dc7a537726fbffed (patch)
tree91beaab7e3268e6b24adb5ebe9c71f99d0034d75 /python
parentc6cc26af85cf4b1cede5833f61299da429ba76e2 (diff)
Fix documentation for Type.const
Diffstat (limited to 'python')
-rw-r--r--python/types.py2
1 files changed, 1 insertions, 1 deletions
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)