diff options
| author | Peter LaFosse <peter@vector35.com> | 2019-01-30 13:08:57 -0500 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2019-01-30 13:08:57 -0500 |
| commit | cbb196c27ff14928ac17bd97dc7a537726fbffed (patch) | |
| tree | 91beaab7e3268e6b24adb5ebe9c71f99d0034d75 /python/types.py | |
| parent | c6cc26af85cf4b1cede5833f61299da429ba76e2 (diff) | |
Fix documentation for Type.const
Diffstat (limited to 'python/types.py')
| -rw-r--r-- | python/types.py | 2 |
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) |
