about summary refs log tree commit diff
path: root/docs/FAQ.md
diff options
context:
space:
mode:
authorllzmb <46303940+llzmb@users.noreply.github.com>2021-12-02 17:09:55 +0100
committerllzmb <46303940+llzmb@users.noreply.github.com>2021-12-02 17:09:55 +0100
commitf63c2ed1450da8ab5ff38dcb7f0ab1a13d9865ca (patch)
tree214a152b504f1ead1b716e44b82055c2025db5ef /docs/FAQ.md
parent73e9677a881a6d8a43a02aba5a7d8000c0f87987 (diff)
downloadafl++-f63c2ed1450da8ab5ff38dcb7f0ab1a13d9865ca.tar.gz
Change the word "entrypoint" to "entry point"
Diffstat (limited to 'docs/FAQ.md')
-rw-r--r--docs/FAQ.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/FAQ.md b/docs/FAQ.md
index 34ed4cf5..ae4a77dc 100644
--- a/docs/FAQ.md
+++ b/docs/FAQ.md
@@ -33,7 +33,10 @@ If you find an interesting or important question missing, submit it via
 
   A program contains `functions`, `functions` contain the compiled machine code.
   The compiled machine code in a `function` can be in a single or many `basic blocks`.
-  A `basic block` is the largest possible number of subsequent machine code instructions that has exactly one entrypoint (which can be be entered by multiple other basic blocks) and runs linearly without branching or jumping to other addresses (except at the end).
+  A `basic block` is the largest possible number of subsequent machine code
+  instructions that has exactly one entry point (which can be be entered by
+  multiple other basic blocks) and runs linearly without branching or jumping to
+  other addresses (except at the end).
 
   ```
   function() {