diff options
| author | Jordan Wiens <github@psifertex.com> | 2026-05-27 14:55:28 -0400 |
|---|---|---|
| committer | Jordan Wiens <github@psifertex.com> | 2026-05-27 14:55:28 -0400 |
| commit | 162b406ea28aa5bacc34a00745d8780bcbf58753 (patch) | |
| tree | 39802866489bd352c54599024e24ee346b44cd35 /docs/dev/concepts.md | |
| parent | f2ae12d97604da6136b26c184eb7fe30531b4d5e (diff) | |
add better syntax highlighting for code blocks
Diffstat (limited to 'docs/dev/concepts.md')
| -rw-r--r-- | docs/dev/concepts.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/dev/concepts.md b/docs/dev/concepts.md index 14756160..b1ca9687 100644 --- a/docs/dev/concepts.md +++ b/docs/dev/concepts.md @@ -26,7 +26,7 @@ Some BinaryViews have parent views. The view used for decompilation includes mem When you're interacting with the Binary Ninja [scripting console](../guide/index.md#script-python-console), it's important to realize that every time you run a command, the UI is automatically going to update analysis. You can see this by even running a simple command like: -``` +```python print("test") ``` @@ -238,7 +238,7 @@ Summing up the basic blocks of a function is one way to produce a consistent siz In Binary Ninja, there is no explicit `.size` property of functions. Rather, you can choose to calculate it one of two ways: -``` +```python function_size = current_function.total_bytes # or function_size = current_function.highest_address - current_function.lowest_address |
