summaryrefslogtreecommitdiff
path: root/docs/dev/batch.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/dev/batch.md')
-rw-r--r--docs/dev/batch.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/batch.md b/docs/dev/batch.md
index 9b53a5ab..e9419999 100644
--- a/docs/dev/batch.md
+++ b/docs/dev/batch.md
@@ -82,7 +82,7 @@ A common workflow is to analyze a single (or small number) of functions in a par
```python
from binaryninja import load
-with load("/bin/ls", options={'analysis.limits.maxFunctionSize': 0}) as bv:
+with load("/bin/ls", options={'analysis.limits.maxFunctionSize': 1}) as bv:
fn = bv.entry_function
# Alternatively, use add_user_function at a particular address to first
# create the function