From f63c2ed1450da8ab5ff38dcb7f0ab1a13d9865ca Mon Sep 17 00:00:00 2001 From: llzmb <46303940+llzmb@users.noreply.github.com> Date: Thu, 2 Dec 2021 17:09:55 +0100 Subject: Change the word "entrypoint" to "entry point" --- docs/FAQ.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'docs') 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() { -- cgit 1.4.1