summaryrefslogtreecommitdiff
path: root/docs/dev
diff options
context:
space:
mode:
authorKyleMiles <krm504@nyu.edu>2023-09-20 14:40:22 -0400
committerKyleMiles <krm504@nyu.edu>2023-09-20 15:06:35 -0400
commit052a8d2adb0c7899ae875c03da4edf80b2fa1a81 (patch)
tree51fef92c717c7cc3af22446e97aed1bb1fd0bedb /docs/dev
parentaf2e0455c082239b21bceffbaa1684f795cb1452 (diff)
Rust API : FFI Fix, was leaking some non-null-terminated strings to the core..fix passing a nullptr to `load`
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/annotation.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/dev/annotation.md b/docs/dev/annotation.md
index 81a91424..7cacced0 100644
--- a/docs/dev/annotation.md
+++ b/docs/dev/annotation.md
@@ -46,7 +46,7 @@ Valid symbol types [include](https://api.binary.ninja/binaryninja.enums.SymbolTy
## Tags
-The tags API has been reworked in 3.4 to be easier to use an understand.
+The tags API has been reworked in 3.4 to be easier to use and understand.
### TagTypes
@@ -88,7 +88,7 @@ Function tags are tags you create on a [Function](https://api.binary.ninja/binar
>>> current_function.add_tag("Cheese", "This function smells funny")
```
-If you include an address when you call `Function.add_tag`, you'll create an address tag. These are good for labeling specific instructions.
+If you include an address when you call `Function.add_tag`, you'll create an address tag. These are good for labeling specific instructions.
```py
>>> current_function.add_tag("Bug", "This is comparing an unsigned number with a signed number!", 0xdeadbeef)