diff options
| author | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-10-02 10:56:12 +0000 |
|---|---|---|
| committer | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-10-16 10:06:31 +0000 |
| commit | ce41eb0f446f703f632a702863debe508111a90c (patch) | |
| tree | d5197a97a3728bf9104b055a7983f2c614681e42 /src | |
| parent | 67e91988da20e3ab86cc5ae078b32c9d8a81b951 (diff) | |
| download | focaccia-ce41eb0f446f703f632a702863debe508111a90c.tar.gz focaccia-ce41eb0f446f703f632a702863debe508111a90c.zip | |
Fix incorrect docstring for write_register ta/docs
Diffstat (limited to 'src')
| -rw-r--r-- | src/focaccia/lldb_target.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/focaccia/lldb_target.py b/src/focaccia/lldb_target.py index 5a43b57..c5042d5 100644 --- a/src/focaccia/lldb_target.py +++ b/src/focaccia/lldb_target.py @@ -209,7 +209,7 @@ class LLDBConcreteTarget: f' register {regname}: {err}') def write_register(self, regname: str, value: int): - """Read the value of a register. + """Write a value to a register. :raise ConcreteRegisterError: If `regname` is not a valid register name or the target is otherwise unable to set |