From 052a8d2adb0c7899ae875c03da4edf80b2fa1a81 Mon Sep 17 00:00:00 2001 From: KyleMiles Date: Wed, 20 Sep 2023 14:40:22 -0400 Subject: Rust API : FFI Fix, was leaking some non-null-terminated strings to the core..fix passing a nullptr to `load` --- docs/dev/annotation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/dev') 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) -- cgit v1.3.1